@extends('layouts.admin/e-commerce.app') @section('title', 'Category List') @push('css') @endpush @section('content') Category List Home Category List Category List Add Category SL Name Description Cover Photo Status Action @foreach ($categories as $key => $data) {{$key + 1}} {{$data->name}} {{Str::words($data->description, 5, '...')}} @if ($data->cover_photo == 'default.png') @else @endif @if ($data->status) Active @else Disable @endif @csrf @method('DELETE') @endforeach SL Name Description Cover Photo Status Action @endsection @push('js') @endpush