@extends('pdf') @section('content-area')

@lang('All accounts')

@foreach ($accounts as $key => $account) @endforeach
@lang('#') @lang('Bank Name') @lang('Branch Name') @lang('Account Number') @lang('Available Balance') @lang('Date') @lang('Status')
{{ ++$key }} {{ $account['bank_name'] }} {{ $account['branch_name'] }} {{ $account['account_number'] }} @currency($account['available_balance']) {{ $account['date'] }} @if ($account['status']) @lang('Active') @else @lang('Inactive') @endif
@endsection