@extends('includes.main') @section('main-container')
Add

Invoices

@if (session()->has('type')) @endif
@forelse ($invoices as $invoice) @empty @endforelse
Name Phone Vehicle Product Quantity Total Paid Amount Remain Action
{{ $invoice->name }} {{ $invoice->phone }} {{ $invoice->vehicle_number }} {{ $invoice->title }} {{ $invoice->quantity }} {{ $invoice->sale_price * $invoice->quantity }} {{ $invoice->credit }} {{ $invoice->sale_price * $invoice->quantity - $invoice->credit }}
{!! btnDelete('invoice.destroy', 'invoices', $invoice->invoice_id) !!}
No record found.
{{-- Pagination --}}
{{-- {!! $customer->links() !!} --}}
@endsection