@extends('expenses.layouts.expense-layout') @section('title') Received Amount Report || @parent @stop @section('main-content')
Advance Filter

@if(count(Request::input())) Received Money Transaction Report:
{{carbonDate($from, 'y-m-d')}} to {{carbonDate($to, 'y-m-d')}} @else Today's Received Money @endif

@foreach($incomes as $income) @endforeach
# Title Type Amount By Date
{{$income->id}} {{$income->title}}

{{$income->details}}

@foreach($string as $a) {{ucfirst($a)}} @endforeach ৳ {{$income->amount}} @if($income->deposited_by) {{title_case($income->deposited_by)}} @else - @endif {{carbonDate($income->date, 'y-m-d')}}
Total Received: ৳ {{$incomes->sum('amount')}}
@stop @section('post-js') @stop