@extends('layouts.master') @section('css') @include('admin.stock-items.create-modal-css') @endsection @section('title') Purchase Request @endsection @section('content')
@isset($order)
@method('put') @else @endisset @csrf
@isset($order) Edit Purchase Request @else Add Purchase Request @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
---
{{ 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 --}} @include('admin.stock-items.create-modal') @endsection @section('script') @include('admin.stock-items.create-modal-script') @endsection