@extends('layouts.master') @section('content')
Back
Customer Transaction Type
{{-- Success Alert --}} @if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Transaction Type
Debit / Credit
Tax
General Ledger Accounts
Cancel


Existing {{ ucfirst(str_replace('_', ' ', $type)) }}s
@foreach($transactions as $transaction) @endforeach
Code Description Ledger Account 1 Ledger Account 2 Tax Account Actions
{{ $transaction->code }} {{ $transaction->description }} {{ $transaction->debitLedgerAccount->account_name ?? 'N/A' }} {{ $transaction->creditLedgerAccount->account_name ?? 'N/A' }} @if($transaction->taxAccount) {{ $transaction->taxAccount->code }} - {{ $transaction->taxAccount->account_name }} @else N/A @endif
@csrf @method('DELETE')
@endsection