@extends('dealer_layouts.dealer_master') @section('page-title') Dealer | Transactions @endsection @section('page-content') @include('organisation.partials.top_up_merchant') @include('organisation.partials.top_up_merchant_by_id')
Merchant Details
{{ strtoupper($merchant->fullname) }}

{{ $merchant->phone }}

Phone

{{ ucfirst($merchant->language) }}

Language

{{ number_format($merchant->balance, 2) }}

Balance

{{ ucfirst($merchant->status) }}

Status
Merchant Sales to Customers
@forelse ($merchant->transactions as $row) @empty @endforelse
Recipient Phone Amount (MWK) Status Date
{{ $row->msisdn }} {{ number_format($row->amount) }} {{ $row->status }} {{ $row->created_at }}
No Data
Merchant Balance Top Ups
@forelse ($merchant_topups as $row)

MWK {{ number_format($row->amount) }}

{{ $row->status }}
{{ $row->created_at }}
@empty No Data @endforelse
@endsection @section('page-js') @endsection