{{ config('app.currency') . $totalBills }}
{{ config('app.currency') . $totalPayments }}
{{ config('app.currency') . $billsThisMonth }}
{{ config('app.currency') . $paymentsThisMonth }}
{{ $totalUsers }}
{{ $usersWithDueCount }}
{{ config('app.currency') . $billsThisYear }}
{{ config('app.currency') . $paymentsThisYear }}
{{ __('Name') }} | {{ __('Package') }} | {{ __('Joined') }} |
---|---|---|
{{ $user->name }} | {{ $user->detail->package_name }} | {{ date('Y-m-d', strtotime($user->created_at)) }} |
{{ __('User') }} | {{ __('Amount') }} | {{ __('Date') }} |
---|---|---|
{{ $payment->user->name }} | {{ config('app.currency') . $payment->package_price }} | {{ date('Y-m-d', strtotime($payment->created_at)) }} |
{{ __('Name') }} | {{ __('Package') }} | {{ __('Due') }} |
---|---|---|
{{ $user->name }} | {{ $user->detail->package_name }} | {{ config('app.currency') . $user->due_amount($user->id) }} |
{{ __('Subject') }} | {{ __('Status') }} | {{ __('Date') }} |
---|---|---|
{{ $ticket->subject }} | {{ $ticket->status }} | {{ date('Y-m-d', strtotime($ticket->created_at)) }} |