@extends('master.app') @section('title', 'Cash') @section('pageCSS') @endsection @section('body')
Cash Journal
@include('journals.cash.navbar')
@foreach ($cushJournal as $row) @endforeach
No Title Type Currency date income outgoing Action
{{ $loop->iteration }} {{ $row->title }} {{ $row->type->title_ps }} {{ $row->currency->title_ps }} {{ $row->date }} {{ $row->income }} {{ $row->outgoing }}
{{ $cushJournal->links('pagination::bootstrap-4') }}
@include('journals.cash.income-modal') @include('journals.cash.outgoing-model') @endsection @section('pageJs') @endsection