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

{{ __('Forum Category') }}

@foreach ($forumCategories as $category) @endforeach
{{ __('SL') }} {{ __('Logo') }} {{ __('Title') }} {{ __('Subtitle') }} {{ __('Status') }} {{ __('Action') }}
{{ $loop->iteration }} {{ Str::limit($category->title, 20) }} {{ Str::limit($category->subtitle, 60) }} @if ($category->status == 1) {{ __('Active') }} @else {{ __('Disable') }} @endif
{{ $forumCategories->links() }}
@endsection @push('style') @endpush @push('script') @endpush