@extends('admin.layouts.app') @section('content')
@can('role-create') Add Role @endcan
@forelse ($roles as $key=>$role) @empty @endforelse
# Name Action
{{($key+1) + ($roles->currentPage() - 1)*$roles->perPage()}} {{$role->name}} @can('role-edit') @endcan @can('role-delete')
@method('DELETE') @csrf
@endcan

Nothing Found


{!! $roles->links() !!}
@endsection