@extends('adminlte::page') @section('title', 'Add Category') @section('content_header')

All Categories

@stop @section('content') @if (count($errors) > 0)
Whoops! There were some problems with your input.
@endif @if (session('success'))
{{ session('success') }}
@endif
Add New
@foreach ($categories as $category) {{-- --}} @endforeach
# Name Slug Service Count Status Action
{{ $loop->iteration }} {{ $category->title }} {{ $category->slug }} {{ $category->posts->count() }} {{ $category->services->count() }} @if ($category->status) Active @else In active @endif
@csrf @method('DELETE')
@stop @section('css') @stop @section('js') @stop