@extends('merch_layouts.merch_master') @section('page-title') Merchant | {{ $page_title }} @endsection @section('page-content')
Dashboard information and statistics
Current Balanace

"> {{ $merchant->currency }} {{ number_format($current_balance) }}

Total Sales (Overall)

{{ number_format($transaction_sum) }}

Customer Top Up
{{csrf_field()}}
@include('commons.notifications')
Recent Transactions
@forelse ($transactions as $row) @empty @endforelse
Phone Amount ({{ $merchant->currency }}) Status Sale Date
{{ $row->msisdn }} {{ number_format($row->amount) }} {{ $row->status }} {{ Carbon\Carbon::parse($row->created_at)->format('F d, Y') }}
No Data
@endsection @section('page-js') @endsection