@extends('layouts.app') @section('title', 'New Purchase Order') @section('breadcrumb')Purchase Orders New PO@endsection @section('content') @php $units = ['Each','m','m²','m³','Sheet','Pack','Box','Set','Pair','Roll','L','kg','Bag','Panel','Slab']; @endphp
@csrf @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif

Purchase Order Details

Line Items

Description * Item Name SKU Unit Qty * Unit Cost * Total
Total:
Cancel
@endsection