@extends('layouts.admin') @section('title', 'Payments to Merchants') @push('styles') @endpush @section('content')
Manage and process merchant payments efficiently
| Payment # | Merchant | Amount | Payment Date | Method | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $payment->payment_number }} | {{ $payment->merchant->name ?? 'N/A' }} | Rs. {{ number_format($payment->amount, 2) }} | {{ $payment->payment_date->format('M d, Y') }} | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} | @if($payment->status == 'pending') Pending @elseif($payment->status == 'completed') Completed @else {{ ucfirst($payment->status) }} @endif | View @if($payment->status == 'pending') @endif |
| No payments found | ||||||