@extends('admin.layouts.master')
@section('content')
@if (session('warn'))
@endif
| SN |
Name |
Blog count |
Operation |
@php
$i=1;
@endphp
@foreach(App\Models\Category::all() as $category)
| {{ $i++ }} |
{{ $category->name }} |
{{ $category->blogs()->count() }} |
|
@endforeach
@endsection