@extends('backend.layouts.app') @section('title', __('Edit Sale Order')) @section('admin-content')
@include('backend.layouts.partials.messages')

Edit Sale Order

@csrf @method('PUT') {{-- Customer Section --}}
{{-- Include Modals --}} @include('components.popups.customer-modal') @include('components.popups.item-modal')
{{-- Order Lines --}}

Order Lines

@foreach($order->lines as $i => $line) @endforeach
Item Code Item Name Qty Unit Price Discount (%) Tax (%) Total Action
{{ number_format($line->line_total, 2) }}
Total: PKR 0.00
@endsection