@extends('layouts.order-master') @section('css') @endsection @section('title') Sales Return Order @endsection @section('content')
@isset($order)
@method('put') @else @endisset @csrf
@isset($order) Edit Sales Return Order @else Add Sales Return Order @endisset
Report
Add Items
@isset($orderItems) @php $tabIndex = 0; @endphp @if (count($orderItems) > 0) @foreach ($orderItems as $key => $orderItem) @php $key = $key + 1; @endphp @php $tabIndex = $tabIndex + 7; @endphp @endforeach @endif @endisset
Item Stock MRP Qty Unit Price Price(Inc GST) Gross Value Disc% Taxable Value Tax Total Remarks Is Dmg
---
is_damage == 1 ? 'checked' : '' }}>
{{ isset($orderItems) ? $orderItems->sum('total') : '0.00' }}
Discount :
Freight/Etc :
Round Off :
{{ isset($order) ? $order->round_off : '0.00' }}
Grand Total :
{{ isset($order) ? $order->amount : '0.00' }}
* Stock is based on the base unit of the item
{{-- Print Modal --}} {{-- Price History Modal --}} @endsection @section('script') @endsection