{!! Form::open(['url' => '', 'id' => 'bulkTxnForm']) !!} @php $sl = 1; @endphp @foreach ($transactions as $key => $transaction) @endforeach
SL NO Branch Name Member Txn Code Product Bkash Amount(TK)
Name Code Trx Ref. Date Time
{{ $sl++ }} {{ $transaction->branchCode }} - {{ $transaction->branchName }} {{ $transaction->memberName }} {{ $transaction->memberCode }} {{ $transaction->txnCodes }} {{ $transaction->products }} {{ $transaction->transaction_id }} {{ date('d-m-Y', strtotime($transaction->tnx_time)) }} {{ date('H:i A', strtotime($transaction->tnx_time)) }} {{ number_format($transaction->amount) }}
Total Amount   {!! Form::text('totalAmount', number_format(0), [ 'class' => 'form-control text-right', 'readonly' => 'readonly', 'id' => 'totalAmount', ]) !!}
{!! Form::submit('Click here to advice', ['class' => 'btn btn-blue form-control text-uppercase']) !!}
{!! Form::close() !!}