@extends('layouts.app') @section('title', __('lang_v1.dailySummaryReport')) @section('content')

{{ __('lang_v1.dailySummaryReport')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'dailySummaryReport']), 'method' => 'get' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'id' => 'location_id','style' => 'width:100%']); !!}
{!! Form::label('date_range', __('report.date_range') . ':') !!} {!! Form::text('date_range', null , ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'date_range', 'readonly']); !!}

{!! Form::label('date_range', __('report.date_range') . ':') !!} @if (!empty($start_date)) {{ $start_date }} @endif to @if (!empty($end_date)) {{ $end_date }} @endif
{!! Form::close() !!} @endcomponent
{{--
--}}
@component('components.widget', ['class' => 'box-primary', 'title' => 'Daily Purchase', 'button'=> 'Print'])
{{-- --}}
@lang('lang_v1.contact_id')@lang('purchase.ref_no') @lang('purchase.supplier') @lang('sale.total') @lang('report.paid') @lang('report.due')
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => 'Daily Purchase Return'])
{{-- --}}
@lang('lang_v1.contact_id')@lang('purchase.ref_no') @lang('purchase.supplier') @lang('sale.total') @lang('report.paid') @lang('report.due')
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => 'Suuplier Due Payment'])
@lang('purchase.ref_no') @lang('purchase.supplier') @lang('report.paid')
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => 'Sales'])
@lang('lang_v1.contact_id') @lang('sale.customer_name') @lang('sale.invoice_no') @lang('messages.date') @lang('sale.total') (@lang('product.exc_of_tax')) @lang('sale.discount') @lang('sale.tax') @lang('sale.total') (@lang('product.inc_of_tax')) @lang('report.paid') @lang('report.due')
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => 'Sales Return'])
@lang('lang_v1.contact_id') @lang('sale.customer_name') @lang('sale.invoice_no') @lang('messages.date') @lang('sale.total') (@lang('product.exc_of_tax')) @lang('sale.discount') @lang('sale.tax') @lang('sale.total') (@lang('product.inc_of_tax')) @lang('report.paid') @lang('report.due')
@endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => 'Customer Due Recived'])
@lang('purchase.ref_no') @lang('contact.customer') @lang('sale.amount')
@endcomponent
@endsection @section('javascript') @endsection