@extends('admin.layout.master') @section('custom_style') @endsection @section('content') @include('flash-message')
| Oppening | Received | Payment | Refund | Balance |
|---|---|---|---|---|
| {{$summary['opening_balance']}} | {{$summary['received']}} | {{$summary['handovered']}} | {{$summary['refund']}} | {{$summary['balance']}} | {{-- --}}
| Hand Over To User |
{{-- @dd($users->first()->cashier) --}}
@error('user_id')
{{ $message }}
@enderror
|
|||
|
{{ Form::textarea('note', null, ['class' => 'form-control', 'id' => 'note', 'rows' => 1, 'placeholder' => 'Remarks']) }}
@error('note')
{{ $message }}
@enderror
|
||||
| SL | Payment Method | Received | Total | |
|---|---|---|---|---|
| {{$k+1}} | {{$payment->name_eng}}({{$payment->account_id}}) | @php $collections = $bank_collection_group_by_ledger->where('ledger_id',$payment->account_id); $c_amount=$bank_collection_group_by_ledger->where('ledger_id',$payment->account_id)->sum('amount'); $total_c+=($c_amount); @endphp {{--{{implode(",", $ids)}} | --}}{{$c_amount}} | |
| Total | {{$total_c}} | |||
| Sender | Amount | Date | Action |
|---|---|---|---|
| @if($request_list->first()->type ==1) @else {{user_name($request_list->first()->created_by)}} @endif | {{$request_list->sum('amount')}} | {{ date('d-m-Y h:m:i A', strtotime($request_list->first()->date)) /*carbon()->parse($request_list->first()->date)->format("d-m-Y h:m:i A") */}} | Details || @if($request_list->first()->type ==1) Pending || @else {{$request_list->first()->status == 2 ? "Accept" :null }} @endif {{"Reject"}} |