@extends('layouts.master') @section('titel', 'Sales | ') @section('content') @include('partials.header') @include('partials.sidebar')

Sales Table

Create New Invoice
@foreach ($invoices as $inv) @endforeach
Invoice No Date Customer Name Amount Remarks
{{ $inv->invoice_no }} {{ \Carbon\Carbon::parse($inv->invoice_date)->format('d-m-Y') }} {{ $inv->customer_name }} {{ number_format($inv->total_amount, 2) }} {{ $inv->remarks }}
@endsection @push('js') @endpush