@extends('layouts.app') @section('title', __('restaurant.table_report')) @section('content')

{{ __('restaurant.table_report')}}

{!! Form::label('tr_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('tr_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('tr_date_range', __('report.date_range') . ':') !!} {!! Form::text('date_range', @format_date('first day of this month') . ' ~ ' . @format_date('last day of this month'), ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'tr_date_range', 'readonly']); !!}
@lang('restaurant.table') @lang('report.total_sell')
@endsection @section('javascript') @endsection