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

Edit Purchase Order Bill

@csrf
Brand Part No Product Name Product Remerk Action
@forelse ($items as $item) @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.
@php $counter = 1; @endphp @foreach ($purchase->items as $index => $item) @php $counter = $counter + 1; @endphp @endforeach {{-- --}}
Sr No Brand Product Name Part No Total Qty Qty Product Remerk Action
{{ $counter }} {{ $item->brand }} {{ $item->product_name }} {{ $item->part_no }} {{ $item->total_qty }} {{ $item->bike_name }}
@if (!empty($parties)) @foreach ($parties as $item) @endforeach @endif
{{-- Ledger Show Box --}}
--
@if (!empty($dealers)) @foreach ($dealers as $item)
@endforeach @else @for ($i = 1; $i <= 5; $i++)
@endfor @endif
@endsection @section('plugins.Select2', true) @section('js') {{-- --}} @endsection