@extends('layouts.admin') @section('title', 'Payments') @section('role-label', 'Super Admin') @section('page-title', 'Payments') @section('page-subtitle', 'All platform payment records') @section('sidebar-nav')@include('super-admin.partials.sidebar')@endsection @section('content')
| Restaurant | Amount | Method | Razorpay ID | Status | Date | |
|---|---|---|---|---|---|---|
|
{{ $pay->restaurant->name ?? '—' }}
|
₹{{ number_format($pay->amount, 2) }} | {{ $pay->payment_method ?? '—' }} | {{ $pay->razorpay_payment_id ?: '—' }} | @php $pc=['success'=>'badge-success','pending'=>'badge-warning','failed'=>'badge-danger','refunded'=>'badge-info']; @endphp {{ $pay->payment_status }} | {{ $pay->paid_at ? \Carbon\Carbon::parse($pay->paid_at)->format('d M Y') : '—' }} | View |
| No payments found. | ||||||