{{-- table loader --}}
{{ __('admin.loading') }}
{{-- table loader --}} {{-- table content --}} @foreach ($interests as $interest) @endforeach
{{ __('admin.name') }} {{ __('admin.interest_options') }} {{ __('admin.control') }}
{{ $interest->name }} {{ __('admin.show') }}
{{-- table content --}} {{-- no data found div --}} @if ($interests->count() == 0)
{{ __('admin.there_are_no_matches_matching') }}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($interests->count() > 0 && $interests instanceof \Illuminate\Pagination\AbstractPaginator)
{{ $interests->links() }}
@endif {{-- pagination links div --}}