@extends('layouts.list_pdf') @section('pdf-title') {{ __('Bank Account Deposit Lists') }} @endsection @section('header-info')

{{ __('Bank Account Deposit Lists') }}

{{ __('Name:') }} {{ isset($account_name) && !empty($account_name) ? $account_name->name : __('All') }}

@if (isset($date_range) && !empty($date_range))

{{__('Period:')}} {{ $date_range }}

@endif

{{ __('Print Date:') }} {{ formatDate(date('d-m-Y')) }}

@endsection @section('list-table') @foreach($depositList as $data) @endforeach
{{ __('A/c Name') }} {{ __('A/c Number') }} {{ __('Description') }} {{ __('Amount') }} {{ __('Currency') }} {{ __('Date') }}
{{ $data->account->name }} {{ $data->account->account_number }} {{ $data->description }} {{ (string) formatCurrencyAmount($data->amount) }} {{ $data->account->currency->name }} {{ formatDate($data->transaction_date) }}
@endsection