@extends('admin.layouts.master') @section('title', 'Order Edit') @section('css') @endsection @section('content')
Orders List Edit Delete Detail @if ($order->invoices->count() > 0) Edit Invoice @else Create Invoice @endif
@csrf
@error('date')
{{ $message }}
@enderror
@foreach ($order->orderDetails as $index => $orderDetail) @endforeach
# Product Details Stock
Rate
Quantity Amount Action
{{ $index + 1 }}
Please enter a product name
Please enter a rate
Please enter a quantity
Add Product {{-- @if ($order->vat_tax_amount != null && $order->vat_tax_amount > 0) --}} {{-- @else @endif --}}
Sub Total
Discount
Shipping Charge
Vat Tax ({{ $order->vat_tax_percentage }}%)
Include Vat Tax?
vat_tax_amount > 0 ? 'checked' : '' }}>
Vat Tax ({{ $order->vat_tax_percentage }}%)
Include Vat Tax?
Total Amount
@endsection @section('js') @endsection {{-- @section('js') @endsection --}}