@extends('layouts.app') @section('title', __('Hourly Sale Report')) @section('content')

{{ __('Hourly Sale Report')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getSellReport']), 'method' => 'get', 'id' => 'sell_report_filter_form' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'placeholder' => 'All Location', 'style' => 'width:100%']); !!}
@if(empty($only) || in_array('sell_report_filter_date_range', $only))
{!! Form::label('sell_report_filter_date_range', __('report.date_range') . ':') !!} {!! Form::text('sell_report_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endif {!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-solid']) @include('report.partials.hourly_sell_report_table') @endcomponent
@endsection @section('javascript') @endsection