@extends('dash.layouts.app') @section('title') Products @endsection @section('css') @endsection @section('content')

Products List

@foreach($products as $key => $product) @endforeach
# Thumbnail Title Status Action
{{$key+1}} {{$product->title}} @if($product->status==1)
Published
@else
Unpublished
@endif
@csrf @method('delete')
@endsection @section('js') @endsection