@extends('layouts.admin') @section('title', 'Item Master Management') @section('page-title', 'Item Master Management') @section('breadcrumb') @endsection @section('content')
All Items
Add New Item
@if($products->count() > 0)
@foreach($products as $product) @endforeach
ID Item Name Length Width Height Weight Actions
{{ $product->id }} {{ $product->item_name }} {{ $product->length ?? '—' }} {{ $product->width ?? '—' }} {{ $product->height ?? '—' }} {{ $product->weight ?? '—' }}
{{ $products->links() }}
@else
No items found. Add your first item.
@endif
@endsection