@extends('admin.layouts.master') @section('title') Payment Manage | @endsection @section('content')
{{ settings()->address }}
{{ settings()->website_email }}
# Id | User Name | Package Name | Price | Status | Payment Method | Transaction ID | Date | {{--Action | --}}
---|---|---|---|---|---|---|---|---|
{{ $record->id }} | {{ $record->user->name ?? 'N/A' }} | {{ $record->package->name ?? 'N/A' }} | {{ number_format($record->price, 2) }} | @if ($record->payment_status == 'completed') Completed @elseif ($record->payment_status == 'pending') Pending @else Failed @endif | {{ $record->payment_method }} | {{ $record->transaction_id }} | {{ $record->updated_at->format('j F Y g:i A') }} | {{----}} |
No payments found |