{!! Form::open(array('route' => array('amenities.store'), 'class' => 'form-horizontal form-label-left', 'method' => 'POST')) !!}
{!! Form::select('branch[]', [], null, array('id' => 'branch', 'class' => 'form-control', 'multiple' => 'multiple')) !!}
{!! Form::text('date', $date, array('class' => 'form-control', 'id' => 'date')) !!}
{{--
--}} {{--
--}} {{-- --}} {{-- {!! Form::text('dateFrom', $dateFrom, array('class' => 'form-control', 'id' => 'dateFrom')) !!}--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- {!! Form::text('dateTo', $dateTo, array('class' => 'form-control', 'id' => 'dateTo')) !!}--}} {{--
--}} {{--
--}}

Amenities {{ $formattedDateFrom == $formattedDateTo ? $formattedDateFrom : $formattedDateFrom . ' - ' . $formattedDateTo }}

@foreach($amenitiesPool as $amenities) @endforeach
Date Branch Description Quantity
{{ $amenities->date }} {{ $amenities->branch }} {{ $amenities->description }} {{ $amenities->qty }}
{!! Paginate::show($amenitiesPool) !!} {{ $amenitiesPool->appends(request()->except('page'))->links() }}
{!! Form::close() !!}