@extends('layouts.app') {{-- Important Variables --}} @php $moduleName = ' Purchase Order Adjustment '; $ParentRouteName = 'purchaseOrderAdjustment'; if($action == 'create'){ $form_action = route($ParentRouteName.'.store'); $createItemName = __('lang.create') . $moduleName; $breadcrumbCurrentName = " Create"; $submit_button_text = __('lang.save'); } else if($action == 'edit'){ $form_action = route($ParentRouteName.'.store',$po_adjustment->id); $createItemName = __('lang.edit') . $moduleName; $breadcrumbCurrentName = " Edit"; $submit_button_text = __('lang.update'); } $breadcrumbMainName = $moduleName; $breadcrumbMainIcon = 'fas fa-barcode'; $breadcrumbCurrentIcon = 'add_box'; @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content')

{{ $createItemName }}


{{ csrf_field() }} @if($action == 'edit') Purchase Order Adjustment No : {{ $po_adjustment->adjustment_no }} @endif
@php $adjustment_date = date('d/m/Y'); if($action =='edit'){ $adjustment_date = date('d/m/Y',strtotime($po_adjustment->adjustment_date)); } @endphp

Purchase Order Items Detail

Item Name Purchase Order Quantity Effect Adjusted Quantity
Back
@stop @push('include-css') @endpush @push('include-js') @endpush