@extends('layouts.app') @section('content')
Quotations
@can('create quotations') @lang('Create new Qoutation') @endcan
@foreach($invoices as $invoice) @endforeach
Invoice No Customer Issue Date Gross Amount Sales Person Status Created By Actions
INV{{ sprintf("%05d",$invoice->invoice_no) ?: "(blank)" }} {{$invoice?->customer?->name ?: "(blank)"}} {{ $invoice->issue_date ?: "(blank)" }} {{ $invoice->gross_amount ?: "(blank)" }} {{ $invoice->sales_person ?: "(blank)" }} {{ $invoice->status ?: "(blank)" }} {{ $invoice->user->name ?: "(blank)" }} @if($invoice->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show')
@endif
{{-- {{ $invoices->withQueryString()->links() }} --}}
@endsection