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

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

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