@extends('layouts.admin.e-commerce.app') @section('title', 'Product List') @push('css') @endpush @section('content') Product List Home Product List Product List Add Product SL Image Title Status Action @foreach ($products as $key => $data) {{$key + 1}} {{$data->title}} @if ($data->status) Active @else Disable @endif @if ($data->status) @else @endif @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush