@extends('dashboard.layouts.app')
@section('title', trans('admin.roles.title'). ' - ')
@section('speedbar')
@endsection
@section('content')
| ID |
@lang('admin.roles.name') |
@lang('admin.actions') |
@if(count($roles) == 0)
|
@lang('admin.no_data')
|
@endif
@foreach($roles as $role)
| {{ $role->id }} |
{{ $role->name }} |
@can('update', 'roles')
@endcan
@can('delete', 'roles')
@if($role->id > 4)
@endif
@endcan
|
@endforeach
{{ $roles->links('pagination::bootstrap-4') }}
@endsection