{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($fqss as $fqs) @endforeach
{{ __('admin.date') }} {{__('admin.question')}} {{__('admin.control')}}
{{ $fqs->created_at->format('d/m/Y') }} {{$fqs->question}}
{{-- table content --}} {{-- no data found div --}} @if ($fqss->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($fqss->count() > 0 && $fqss instanceof \Illuminate\Pagination\AbstractPaginator )
{{$fqss->links()}}
@endif {{-- pagination links div --}}