@extends('layouts.app')
@section('title', __('essentials::lang.holiday'))
@section('content')
@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all') ]); !!}
{!! Form::label('holiday_filter_date_range', __('report.date_range') . ':') !!}
{!! Form::text('holiday_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __( 'essentials::lang.all_holidays' )])
@if($is_admin)
@slot('tool')
@endslot
@endif
@lang( 'lang_v1.name' ) |
@lang( 'lang_v1.date' ) |
@lang( 'business.business_location' ) |
@lang( 'brand.note' ) |
@if($is_admin)
@lang( 'messages.action' ) |
@endif
@endcomponent
@endsection
@section('javascript')
@endsection