@include('includes/notifications')

Zap Transactions (Per Day)

Note: Zapping a transaction will also zap post void/return exchange, if the transaction has any. Re-uploading a transaction means re-uploading its post void/return exchange, if it has any.


{!! Form::open(array('route' => 'zap_per_day.store','class' => 'form-horizontal form-label-left')) !!}
{!! 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')) !!}
@if(count($branches) > 0) @foreach($branches as $branch) @endforeach @endif
Company Name Branch Name
{{ Form::checkbox('branch[]', $branch->branch_code) }} {{ $branch->company }} {{ $branch->branch }}
{!! Form::text('access_code', null, ['required' => 'required', 'class' => 'form-control col-md-7 col-xs-12']) !!}
{!! Form::close() !!}