@extends('layouts.admin') @section('title', __('Manual Payment')) @section('page-title', __('Manual Payment')) @section('content') @php $proofUrl = $manualPayment->proof_path ? asset('storage/' . ltrim($manualPayment->proof_path, '/')) : null; $badge = match ($manualPayment->status) { 'submitted' => 'bg-yellow-100 text-yellow-800', 'approved' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', default => 'bg-gray-100 text-gray-800', }; @endphp
{{ __('Manual payment details') }}