@extends('merch_layouts.merch_master') @section('page-title') Merchant | Transactions @endsection @section('page-content')
Sales from {{ $merchant->fullname }} to Customers
@forelse ($transactions as $row) @empty @endforelse
Recipient Phone Amount Status Date
{{ $row->msisdn }} {{ number_format($row->amount) }} {{ $row->status }} {{ $row->created_at }}
No Data
{{ $transactions->links() }}
@endsection @section('page-js') @endsection