{!! Form::open(array( 'route' => array('other.payment'), 'class' => 'form-horizontal form-label-left', 'method' => 'GET')) !!}
{!! Paginate::show($items) !!}
{{-- {!! $items->render() !!}--}}
{{-- {{ $items->appends(request()->except('page'))->links() }}--}}
{!! $items->links() !!}
{!! Form::close() !!}
{!! Form::select('branch[]',$branches, $sel_branch, array('id' => 'branch', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A BRANCH...')) !!}
{!! Form::select('gifts[]',$gifts, $sel_gift, array('id' => 'gift', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A GIFT...')) !!}
{!! 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')) !!}
Other Payment {{ $formattedDateFrom == $formattedDateTo ? $formattedDateFrom : $formattedDateFrom . ' - ' . $formattedDateTo }}
| Date | Branch | Transaction # | Customer | Serial No | Gift Name | Account Name | Amount | Approved # |
|---|---|---|---|---|---|---|---|---|
| {{ $item->local_time }} | {{ $item->branch_name }} | {{ $item->transaction_no }} | {{ $item->member }} | {{ $item->serial_no }} | {{ $item->gift_name }} | {{ $item->account_name }} | {{ $item->amount }} | {{ $item->approved_no }} |