@extends('admin.admin_dashboard') @section('admin') {{-- Select2 & jQuery --}}
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf @if(isset($journal)) @method('PUT') @endif {{-- Date / Journal No. / Description --}}

{{-- Journal Lines --}}
Journal Lines
@php <<<<<<< HEAD $oldLines = old('lines') ?: ($journal ? $journal->lines->toArray() : [0]); ======= $oldLines = old('lines') ?: ($journal ? $journal->lines->toArray() : [['account_id' => $selectedAccountId ?? null]]); >>>>>>> origin/main @endphp @foreach($oldLines as $i => $line) @endforeach
Account Debit Credit Description / Memo Name Attachments
Total Debit: UGX 0 Total Credit: UGX 0
@endsection