@extends('layouts.master') @section('content')
Back
Inventory Transaction Type
@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 Inventory {{ ucfirst($type) }} Transactions
@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' }} {{ $transaction->taxAccount->account_name ?? 'N/A' }}
@csrf @method('DELETE')
@endsection