@extends('layouts.email') @section('content')

Transaction monthly summary from {{ $fromDate }} to {{ $toDate }}

@if(count($dataBusinesses)) @foreach($dataBusinesses as $business) @if(!empty($business))

{{ $business['name'] }}

Income @currency($business['income'])
Expense @currency($business['expense'])
Total @currency($business['total'])
@endif @endforeach @endif

Report date: {{ \Carbon\Carbon::now()->format('d M Y') }}

@endsection