@extends('layouts.app') @section('content') @include('pages.invoice.po-supplier.partials.menu')

Invoice List

Page for Invoice where you were created.

@foreach ($invoices as $invoice) @endforeach
No Date Supplier Code ETA Date PIC Status Action
{{ $invoice->no }} {{ $invoice->formatted_date }} {{ $invoice->supplier_code }} {{ $invoice->formatted_eta_date }} {{ $invoice->createdBy->full_contact }} @switch($invoice->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
  • {{-- @if (count($invoice->purchaseOrders) < 1)
  • Are you sure want to delete this ?

    @csrf @method('DELETE')
  • @endif --}}
@endsection @section('js') @endsection