@extends('layouts.app') @section('title', 'Returns & Refunds') @section('page_title', 'Returns & Reversals Registry') @section('content')
| Refund # | Invoice # | Customer | Type | Refund Amount | Claimed By | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $ref->refund_number }} | {{ $ref->invoice->invoice_number }} |
{{ $ref->client->full_name }} | {{ ucfirst(str_replace('_', ' ', $ref->refund_type)) }} | {{ number_format($ref->refund_amount) }} UGX |
{{ $ref->requestedBy->full_name }}
{{ $ref->created_at->format('M d, Y') }}
|
{{ ucfirst($ref->status) }} | @if($ref->status === 'pending' && (auth()->user()->isManager() || auth()->user()->isSuperAdmin())) @else - @endif |
| No refund entries logged yet. | |||||||