@extends('back.layouts.layout') @section('title','Product List') @section('content-header')

Product List

@endsection @section('content')
@foreach($products as $product) @endforeach
Sl Name Category Data Description Image Status Action
{{ $loop->iteration }} {{ $product->name }} {{ $product->category->name }} Featured : {!! $product->description !!} @if($product->image!="") @endif
@method('DELETE') @csrf
@endsection