@extends('layouts.master') @section('content')
Back to Dashboard
Add Cashbook Entry
@csrf
@if(Session::has('success'))
{{ Session('success') }}
@endif @if(Session::has('error'))
{{ Session('error') }}
@endif
Cashbook Entries
@foreach($cashbooks as $cashbook) @endforeach
GL Account Code Description Action
{{ $cashbook->generalLedger->code }} - {{ $cashbook->generalLedger->account_name }} {{ $cashbook->code }} {{ $cashbook->description }}
@endsection