@extends('admin.layouts.master') @section('title', 'List of Categories') @section('content')

Categories List

Filter Categories
Categories List
@foreach ($categories as $id => $category) @endforeach
# Image Name Parent Featured Status Actions
{{++$id}}
{{ $category->name }} @if ($category->parent_id == 0) Parent @else Not parent @endif @if ($category->is_featured == 1) Featured @else UnFeatured @endif @if ($category->status == 1) Published @else Draft @endif
@endsection @section('js') @endsection