@extends('layouts.settings') @section('title', __('bank_account.bank_account')) @section('content_settings')
| {{ __('bank_account.name') }} | {{ __('bank_account.number') }} | {{ __('bank_account.account_name') }} | {{ __('app.status') }} |
| {{ $bankAccount->name }} | {{ $bankAccount->number }} | {{ $bankAccount->account_name }} | {{ $bankAccount->status }} |
| {{ __('app.table_no') }} | {{ __('bank_account_balance.date') }} | {{ __('transaction.amount') }} | {{ __('app.description') }} | {{ __('app.created_by') }} | {{ __('app.action') }} |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $bankAccountBalance->date }} | {{ $bankAccountBalance->amount_string }} | {{ $bankAccountBalance->description }} | {{ $bankAccountBalance->creator->name }} | @can('update', $bankAccount) {{ link_to_route( 'bank_accounts.show', __('app.edit'), [$bankAccount, 'action' => 'edit_bank_account_balance', 'bank_account_balance_id' => $bankAccountBalance->id], [ 'id' => 'edit-bank_account_balance-'.$bankAccountBalance->id, 'class' => 'btn btn-sm btn-warning', ] ) }} @endcan |
| {{ __('bank_account_balance.empty') }} | |||||