@extends('layouts.admin') @section('page-title', 'Seller Payouts') @section('content')
{{-- Header --}}

Seller Payouts

You have total {{ $totalPayouts }} payouts

{{-- Status Filter Tabs --}}
{{-- Table --}}
@forelse($payouts as $index => $payout) @empty @endforelse
# Seller Amount Message Payment By Payment To Payment From Status
{{ $payouts->firstItem() + $index }} {{ $payout->vendor->name }} ${{ number_format($payout->amount, 2) }} {{ $payout->notes ?: '-' }} {{ $payout->processor?->name ?? 'admin' }} {{ $payout->payment_method ?? 'cash' }} {{ $payout->processor?->name ?? 'admin' }} @php $statusColors = [ 'processed' => 'text-gray-400', 'accepted' => 'text-green-600', 'pending' => 'text-amber-600', 'rejected' => 'text-red-600', 'canceled' => 'text-red-600', ]; @endphp {{ ucfirst($payout->status) }}
No payouts found
{{-- Pagination --}} @if($payouts->hasPages())
{{ $payouts->links() }}
@endif
@endsection