@extends('admin.layout.master') @section('title','TRANSFER MANAGEMENT') @section('custom_style') @endsection @section ('content')
{{__('obs.transfer_history')}}@if(Request()->list_type==1)
{{-- --}}
@endif
|
||||||||
|---|---|---|---|---|---|---|---|---|
| {{__('obs.sl')}} | {{__('obs.date')}} | {{__('obs.voucher_no')}} | {{__('obs.type')}} | {{__('obs.store')}} | {{__('obs.details')}} | {{__('obs.notes')}} | {{__('obs.amount')}} | {{-- --}}
|
| {{($key+1)}} | {{ date('Y-M-d', strtotime($voucher->date))}} | {{ $voucher->voucher_no }} | {{ strtoupper(str_replace('_',' ',$types[$voucher->type]))}} | {{ $voucher->warehouse->name_eng??'.'}} |
@forelse($voucher->journalsGlobal as $jcb)
@if($jcb->cashBank)
{{$jcb->cashBank->name_eng.' : '.$jcb->amount}} @endif @empty @endforelse |
{{ $voucher->note}} | {{ number_format($voucher->transaction_amount,2)}} | {{-- --}} @empty @endforelse|
| {{__('obs.total_transaction_amount')}} | {{number_format($tAmount,2)}} | {{-- --}}|||||||