@extends('admin.layouts.admin') @section('title','Merchant Payouts') @section('page-title','Merchant Payouts') @section('content') {{-- SUMMARY CARDS --}}
| # | Merchant | Amount | Wallet Balance | Requested At | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $payout->merchant->name }} | LKR {{ number_format($payout->amount,2) }} | LKR {{ number_format($payout->wallet_balance,2) }} | {{ $payout->created_at->format('d M Y') }} | @if($payout->status === 'pending') Pending @elseif($payout->status === 'approved') Approved @else Rejected @endif | @if($payout->status === 'pending') @else No action @endif |
| No payout requests found | ||||||