@extends('layouts.master') @section('title', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar') Form Samples Sample forms Forms Sample Forms Invoice @csrf @method('PUT') Customer Name {{$invoice->customer->name}} @foreach($customers as $customer) {{$customer->name}} @endforeach Date Product Name Qty Price Discount Amount @foreach($sales as $sale) {{$sale->product->name}} @foreach($products as $product) {{$product->name}} @endforeach @endforeach Total Submit @endsection @push('js') @endpush
Sample forms