@extends('admin.layouts.app') @section('content')

{{ __('News Tags')}}

@include('admin.message')
{{ __('Add Tag')}}
@csrf @include('News::admin/tag/form',['parents'=>$rows])
@if(!empty($rows))
{{csrf_field()}}
@endif

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach ($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Slug')}} {{ __('Date')}}
{{ $row->name}} {{ $row->slug}} {{ display_date($row->updated_at)}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection