@extends('back.layouts.layout') @section('title','Category List') @section('content-header') Category List Dashboard Product Category List @endsection @section('content') Add Category Sl Name Description Status Action @foreach($categories as $category) {{ $loop->iteration }} {{ $category->name }} {!! $category->description !!} @if($category->status ==1)Published @else Unpublished @endif @method('DELETE') @csrf @endforeach @endsection