@extends('dealer_layouts.dealer_master') @section('page-title') Dealer | {{ $page_title }} @endsection @section('page-content')
Dashboard information and statistics
Current Balance

{{ $organisation->currency ?? "" }} {{ number_format(($organisation->balance ?? 0) ?: 0, 2) }}

Total Sales (Overall)

{{ $organisation->currency ?? "" }} {{ number_format($merchant_topups->sum('amount'), 2) }}

Merchant Top Up
@csrf
@include('commons.notifications')
Recent Transactions
@forelse ($merchant_topups as $row) @empty @endforelse
Recipient Merchant Amount ({{ $organisation->currency ?? "" }}) Payment Method Status Sale Date
{{ optional($row->merchantInfo)->fullname ?? 'N/A' }} {{ number_format($row->amount, 2) }} {{ $row->payment_method }} {{ $row->status }} {{ \Carbon\Carbon::parse($row->created_at)->format('F d, Y') }}
No Data Available
@endsection @section('page-js') @endsection