{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($roles as $role) @endforeach
# {{ __('admin.date') }} {{__('admin.name')}} {{__('admin.control')}}
{{$loop->iteration}} {{ $role->created_at->format('d/m/Y') }} {{$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 --}}