@extends('master.app') @section('title', 'Cash') @section('body')
Expense Journal
@include('journals.expense.navbar')
Total
    @foreach ($currency as $row)
  • {{ $row->title_ps }} {{ $expenseJournal->where('currency_id', $row->id)->sum('amount') }}
  • @endforeach
@include('journals.expense.expense_modal') @endsection @section('pageJs') @endsection