@extends('backend.layouts.master') @section('title') Invoice List @endsection @push('styles') @endpush @section('admin-content')

Invoice List

@include('backend.layouts.partials.message')
@forelse($invoices as $invoice) {{-- --}} {{-- --}} @empty @endforelse
# User Refer Project Name Project Address Flat Purchase Date Remark Action
{{ $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
@csrf @method('DELETE')
No invoices found
@include('backend.layouts.partials.footer')
@endsection