@extends('layouts.app_report') @section('title', __('restaurant.service_staff_report')) @section('content')
@component('components.filters', ['title' => __('report.filters')])
{!! Form::select('ssr_location_id', $business_locations, null, ['id'=>'ssr_location_id','class' => 'form-control select2', 'style' => 'width:100%']); !!} {!! Form::label('ssr_location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('service_staff_id', $waiters, null, ['id'=>'service_staff_id','class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!} {!! Form::label('service_staff_id', __('restaurant.service_staff') . ':') !!}
{!! Form::text('ssr_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' => 'ssr_date_range', 'readonly']); !!} {!! Form::label('ssr_date_range', __('report.date_range') . ':') !!}
@endcomponent
@endsection @section('javascript') @endsection