@extends('layouts.backend.master') @section('title','Tag') @push('css') @endpush @section('content')

ALL TAGS {{ $tags->count() }}

@foreach($tags as $key=>$tag) @endforeach
ID Name Post Count Created At Updated At Action
ID Name Post Count Created At Updated At Action
{{ $key + 1 }} {{ $tag->name }} {{ $tag->posts->count() }} {{ $tag->created_at }} {{ $tag->updated_at }} edit
@endsection @push('js') @endpush