@if($categories->count() > 0)
|
Name
|
Description
|
Action [D]
|
Action [E]
|
All
|
@foreach($categories as $category)
|
{{ $category->name }}
|
{{ str_limit($category->description, 25) }}
|
@if($category->name != 'Uncategorized' or $category->name != 'uncategorized')
@endif
|
|
{{ $category->posts()->count() }}
|
@endforeach
@else
There is no Category.
If you want to create a new post, you must first create a Category.
@endif