@extends('layouts.app') @section('title', 'Refunded Invoices') @section('content')

Refunded Invoices

View refunded invoices

@forelse($invoices as $invoice) @empty @endforelse
Invoice # Client Amount Date Paid Date Actions
{{ $invoice->invoice_number }}
{{ $invoice->user->name }}
{{ $invoice->user->email }}
{{ format_currency($invoice->total) }} {{ $invoice->date->format('M d, Y') }} {{ $invoice->updated_at->format('M d, Y') }} View
No refunded invoices found
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif
@endsection