@extends('back_end.app'); @section('content')
Category
@if(session('status')) @endif

Category

All Category Data

@if($category->count() < 1 )
No Category Were Found !
@else @foreach ($category as $key => $item) @endforeach
Sl Name Slug Created by Post Count Action
{{ ++$key }} {{ $item->name }} {{ $item->slug }} {{ $item->user->user_name }} P {{ $post->where('category',$item->id)->count(); }}
Total : {{ $category->count()}}
@endif
@endsection