@extends('layouts.admin') @section('title', 'Payments') @section('content')
{{ config('marketplace.currency.default') }} {{ number_format($settledTotal / 100, 2) }} settled
| Reference | Seller | For | Amount | Method | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $payment->reference }} {{ $payment->created_at->format('d M Y') }} | {{ $payment->user?->name }} {{ $payment->user?->email }} | @if ($payment->payable instanceof \App\Models\Subscription) {{ $payment->payable->plan?->name }} @elseif ($payment->payable instanceof \App\Models\ListingPromotion) {{ $payment->payable->type->label() }} @else — @endif | {{ $payment->formattedAmount() }} | {{ str_replace('_', ' ', $payment->gateway) }} |
|
Open |