@extends('layouts.app') @section('title', 'Refunds') @section('content')
{{ $refunds->total() }} refund request(s). Money only moves when an approved refund is processed.
| Reference | Customer | Original payment | Amount | Method | Reason | Approved by | Status | |
|---|---|---|---|---|---|---|---|---|
| {{ $refund->reference }} | {{ $refund->customer?->display_name ?: '—' }} |
{{ $refund->payment?->reference ?: '—' }}
{{ money($refund->payment?->amount) }}
|
{{ money($refund->amount) }} | {{ title_case_words($refund->method) }} | {{ title_case_words($refund->reason) }} | {{ $refund->approver?->name ?: '—' }} | {{ title_case_words($refund->status) }} | Open |