{!! Form::open(array('route'=>'gift_cards.store','method'=>'POST')) !!}
{!! Form::select('branch[]', $branchSelection, null, array('id' => 'branch', 'class' => 'form-control' ,'multiple' => 'multiple')) !!}
{!! Form::text('date_from',$date_from,array('class' => 'form-control', 'id' => 'date_from')) !!}
{!! Form::text('date_to',$date_to,array('class' => 'form-control', 'id' => 'date_to')) !!}

Branch Ranking By Gift Card Used {{ $formattedDateFrom == $formattedDateTo ? $formattedDateFrom : $formattedDateFrom . ' - ' . $formattedDateTo }}

{!! Form::close() !!}
@foreach($branchSalesWithGiftSummary as $branchSaleWithGiftSummary) {{-- --}} @endforeach
Branch GIFTCARD 1000 GIFTCARD 5000 Total Gift Cards Total Gift Card Amount
{{ $branchSaleWithGiftSummary->branch }} {{ $branchSaleWithGiftSummary->gift_card_1000_count }} {{ $branchSaleWithGiftSummary->gift_card_5000_count }} {{ $branchSaleWithGiftSummary->gift_card_count }} {{ $branchSaleWithGiftSummary->gift_card_amount }} Transaction Details
{{--

Gift Card Report

Total Qty: {!! $total_qty !!}

@foreach($items as $item) @endforeach
Date Store Series Amount
{{ $item->local_time }} {{ ucwords(strtolower($item->branch_name)) }} {{ $item->gift_name }} {{ $item->amount }}
--}}