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

Order Lines

@foreach($order->lines as $line) @endforeach
Item Code Item Name Qty Price Tax Total
{{ $line->item_code }} {{ $line->item_name }} {{ $line->quantity }} {{ number_format($line->unit_price, 2) }} {{ $line->tax_rate }}% {{ number_format($line->line_total, 2) }}
@endsection