@extends('layouts.admin_master') @section('page-title') Admin | {{ $page_title }} @endsection @section('page-content')
List of Merchants
@include('commons.notifications')
@forelse ($merchants as $row) @empty @endforelse
Name Balance (MWK) Phone Status Date Created Action
{{ $row->fullname }} {{ number_format($row->balance) }} @if($row->phone) {{ $row->phone }} @else {{ 'N/A' }} @endif {{ ucfirst($row->status) }} {{ Carbon\Carbon::parse($row->created_at)->format('F d, Y') }}
No Data
{{ $merchants->links() }}
@endsection @section('page-js') @endsection