@extends('dashboard.layouts.app') @section('content') @if (session('success')) @endif @if ($errors->any()) @endif
Profit & Loss Report
@csrf
@error('from_date')
{{ $message }}
@enderror
@error('to_date')
{{ $message }}
@enderror
@if (isset($totalIncome))
Results from {{ $fromDate }} to {{ $toDate }}
Total Income

{{ number_format($totalIncome, 2) }}

Total Expense

{{ number_format($totalExpense, 2) }}

Profit / Loss

{{ number_format(abs($profitLoss), 2) }}

@endif
@if (isset($totalIncome)) @push('scripts') @endpush @endif @push('styles') @endpush @endsection