@extends('layouts.app') @section('content')

Sales

@include('validate')

Sales @lang('general.details')

{{ $sales->invoice_prefix }}
Product Qty Unit Price Total
@csrf @method('PUT')
@foreach ($sales->items as $items) @endforeach
Product Name Product Code Quantity MRP Price Total
{{ $items->product->product_name }} {{ $items->product->product_code }} {{ round($items->qty, 2) }} {{ $items->unit->unit_code ?? '' }} {{ number_format($items->mrp_rate, 2) }} {{ number_format($items->price, 2) }} {{ number_format($items->row_total, 2) }}
Sub Total
Discount
Round Off
Grand Total
Paid Amount
Balance Amount
Payment Mode
@csrf
@endsection @push('scripts') @endpush