@extends('layout',['heading'=>__('ui.monthly_revenue_report')]) @section('content')

{{ __('ui.monthly_revenue_report') }}

{{ __('ui.revenue_report_intro') }}

{{ __('ui.back_to_system_dashboard') }}
{{ __('ui.clear_filter') }}

{{ __('ui.total_cash') }}

{{ number_format($totals['cash'],2) }} {{ __('ui.currency') }}

{{ __('ui.total_instapay') }}

{{ number_format($totals['instapay'],2) }} {{ __('ui.currency') }}

{{ __('ui.grand_total') }}

{{ number_format($totals['total'],2) }} {{ __('ui.currency') }}

{{ __('ui.monthly_activity') }}

@forelse($payments as $row)@empty@endforelse
{{ __('ui.month') }}{{ __('ui.transaction_count') }}{{ __('ui.cash') }}{{ __('ui.instapay') }}{{ __('ui.grand_total') }}
{{ $row->month }}{{ $row->payments_count }}{{ number_format($row->cash_total,2) }} {{ __('ui.currency') }}{{ number_format($row->instapay_total,2) }} {{ __('ui.currency') }}{{ number_format($row->total,2) }} {{ __('ui.currency') }}
{{ __('ui.no_revenue_period') }}

{{ __('ui.revenue_by_clinic') }}

@forelse($byClinic as $row)@empty@endforelse
{{ __('ui.code') }}{{ __('ui.clinic') }}{{ __('ui.cash') }}{{ __('ui.instapay') }}{{ __('ui.grand_total') }}
{{ $row->code }}{{ $row->name }}{{ number_format($row->cash_total,2) }} {{ __('ui.currency') }}{{ number_format($row->instapay_total,2) }} {{ __('ui.currency') }}{{ number_format($row->total,2) }} {{ __('ui.currency') }}
{{ __('ui.no_data') }}
@endsection