@extends('layouts.admin') @section('title', 'New Purchase | Mintavia Admin') @section('content')

New Purchase Order Bill

@csrf
Brand Part No Product Name Product Remerk Action
@forelse ($items as $item) {{-- will now show model name like "Splendor" --}} @empty @endforelse
Brand Product Name Part No Total Qty Reorder Level Product Remerk
{{ $item->brand->brand_name ?? 'N/A' }} {{ $item->product_name }} {{ $item->product_part_no }} {{ $item->total_qty }} {{ $item->reorder_level ?? '0' }} {{ $item->remark ?? 'N/A' }}
No data found.
Sr No Brand Product Name Part No Total Qty Qty Product Remerk Action
@if (!empty($parties)) @foreach ($parties as $item) @endforeach @endif
{{-- Ledger Show Box --}}
--
@for ($i = 1; $i <= 5; $i++)
@endfor
@endsection @section('plugins.Select2', true) @section('js') {{-- --}} @endsection