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

{{__("All topics")}}

@include('admin.message')
@if(!empty($rows))
@csrf
@endif

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

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Category')}} {{ __('Display Order')}} {{ __('Date')}} {{ __('Status')}}
{{$row->title}} {{$row->cat->name ?? '' }} {{$row->display_order}} {{ display_date($row->updated_at)}} {{ $row->status }}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection