@extends('layouts.app') @section('content')

{{ __('Products Page') }}

@foreach($items as $item) @endforeach
# Product Code Product Name Product Description Category Name Sub Category Name Product Status Actions
{{$item->product_id}} {{$item->product_code}} {{$item->product_name}} {{$item->product_description}} {{$item->category->category_name}} {{$item->subcategory->subcategory_name}} {{$item->product_status}}
@endsection