@extends('Admin.Layout.main_layout')
@section('main_container')
| id |
Product Name |
Product Slug |
Product Category |
Actions |
@if(!$product_arr->isEmpty())
@foreach($product_arr as $key => $data)
| {{ ($key+1) }} |
{{ $data->product_name }} |
{{ $data->product_slug }} |
{{ $data->cat_name }} |
|
@endforeach
@else
No Products Available
@endif
@endsection