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