@extends('expenses.layouts.expense-layout')
@section('title')
Account Statement || @parent
@stop
@section('main-content')
@if(count(Request::input()))
Account Statement:
{{carbonDate($from, 'y-m-d')}} to {{carbonDate($to, 'y-m-d')}}
@else
{{date('F')}}'s' Account Statement
@endif
Particulars |
Debit |
Credit |
@foreach($expenses as $expense)
- -{{$expense->expense_head}}
@endforeach
|
@foreach($incomes as $income)
- -{{$income->title}}
@endforeach
|
@stop
@section('post-js')
@stop