@extends('layouts.master') @section('title', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar') Create Invoice Invoices Create Invoice @csrf Customer Name Select Customer @foreach($customers as $customer) {{$customer->name}} @endforeach Date Product Quantity Price Discount % Amount Add Row Select Product @foreach($products as $product) {{$product->name}} @endforeach Total Submit @endsection @push('js') @endpush