{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($roles as $role) @endforeach
# {{__('admin.name')}} {{__('admin.control')}}
{{$loop->iteration}} {{$role->name}} @if(auth()->guard('admin')->user()->role_id != $role->id) @endif
{{-- table content --}} {{-- no data found div --}} @if ($roles->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($roles->count() > 0 && $roles instanceof \Illuminate\Pagination\AbstractPaginator )
{{$roles->links()}}
@endif {{-- pagination links div --}}