@extends('layouts.customer') @section('customer-content')
{{ $refund->reason }}
${{ number_format($refund->amount, 2) }}
{{ ucfirst($refund->status) }}Requested on {{ $refund->created_at->format('M d, Y') }}
@if($refund->status === 'approved')Refund will be credited within 5-10 business days
@endif @if($refund->status === 'rejected'){{ Str::limit($refund->notes, 100) }}
@endifNo refunds yet
Refund requests will appear here