@extends('layouts.admin_master') @section('page-title') Admin | Dashboard @endsection @section('page-content')
Sales from Merchants to end users
@forelse ($merchant_sales as $row) @empty @endforelse
Merchant Name Recipient Phone Amount Status Date
{{ $row->merchant->fullname }} {{ $row->msisdn }} {{ number_format($row->amount) }} {{ $row->status }} {{ $row->created_at }}
No Data
{{ $merchant_sales->links() }}
@endsection @section('page-js') @endsection