@extends('dash.layouts.app') @section('title') Products @endsection @section('css') @endsection @section('content') Products List Create Product # Thumbnail Title Status Action @foreach($products as $key => $product) {{$key+1}} {{$product->title}} @if($product->status==1)Published @else Unpublished@endif @csrf @method('delete') @endforeach @endsection @section('js') @endsection