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