@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Categories'), 'buttons'=>[ [ 'name'=>' '.__('Create a Tag'), 'url'=>'#', 'components'=>'data-toggle="modal" data-target="#addRecord" id="add_record"', 'is_button'=>true ] ] ]) @endsection @section('content')
{{ $totalTags }}

{{ __('Total Tags') }}

{{ $activeTags }}

{{ __('Active Tags') }}

{{ $inActiveTags }}

{{ __('Inactive Tags') }}

{{ __('Tags') }}

@foreach($tags as $tag) @endforeach
{{ __('Name') }} {{ __('Slug') }} {{ __('Uses for blog') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Action') }}
{{ $tag->title }} {{ $tag->slug }} {{ $tag->postcategories_count }} {{ $tag->status == 1 ? __('Active') : __('Draft') }} {{ $tag->created_at->format('F-d-Y') }}
@if(count($tags) == 0)
{{ __('!Opps no records found') }}
@endif
@endsection @push('js') @endpush