ادارة البنوك والنقدية

@lang('reports.filter')

اختيار المعاملات المتشابهة

${{ $amount }}

{{ $bank_name }}

{{ $date }}

@csrf @method('PUT') {{-- --}}
@forelse ($moves as $index=> $move) @empty @endforelse
# تاريخ المعاملة نوع المعاملة المدفوع له/اليه مبلغ المعاملة
{{ $index+1 }} {{ $move->date }} {{ $move->type }} @if($move->type() == 'Supplier' && $move->type() != null) {{ '(Supplier) ' . optional($move->moveable)->company_name }}@elseif($move->type()!= null) {{ '(Client) ' . optional($move->moveable)->name }}@endif {{ $move->amount }}
@lang('dashboard.no_data')
@if($moves->count() >0)
Selected Amount

0

Original Amount

{{ $amount }}

Difference Amount

{{ $amount }}

@endif
@endsection @section('custom_script') @endsection