@include('vendorr.header')
ID |
Product Name |
Product Image |
Category |
Sub Category |
Actions |
@foreach ($products as $product)
{{ $product->id }} |
{{ $product->name }}
|
@if ($product->image == null)
@else
@endif
|
{{ $product->category->name ?? '' }} |
{{ $product->subcategory->name ?? '' }} |
Edit
Delete
|
@endforeach
@include('vendorr.footer')
@section('scripts')
@vite('resources/assets/js/table-data.js')
@endsection