Invoice List
@include('backend.layouts.partials.message')
| # |
User |
Refer |
Project Name |
Project Address |
Flat |
Purchase Date |
Remark |
Action |
@forelse($invoices as $invoice)
| {{ $loop->iteration }} |
{{ $invoice->user->name ?? 'N/A' }} ({{ $invoice->flat->project->short_name }}-{{ $invoice->user->id ?? 'N/A' }}) |
{{ $invoice->refer->name ?? 'N/A' }} |
{{ $invoice->flat->project->name ?? 'N/A' }} |
{{ $invoice->flat->project->address ?? 'N/A' }} |
{{-- {{ $invoice->project->name ?? 'N/A' }} |
{{ $invoice->project->address ?? 'N/A' }} | --}}
{{ $invoice->flat->name ?? 'N/A' }} |
{{ $invoice->purchase_date }} |
{{ $invoice->remark }} |
{{-- --}}
{{-- @if($invoice->status == 'Successful')--}}
{{-- Successful--}}
{{-- @elseif($invoice->status == 'Process')--}}
{{-- Process--}}
{{-- @else--}}
{{-- Null--}}
{{-- @endif--}}
{{-- | --}}
@if(Route::has('admin.invoices.download'))
@endif
|
@empty
| No invoices found |
@endforelse