@extends('layouts.app') @section('title', __('dashboard.sidebar_roles')) @section('page_heading', __('dashboard.sidebar_roles')) @section('content')
| {{ __('dashboard.Name') }} | {{ __('dashboard.Guard Name') }} | الحالة | {{ __('dashboard.Created At') }} | {{ __('dashboard.Actions') }} |
|---|---|---|---|---|
|
{{ \App\Support\PermissionRegistry::roleLabel($role->name) }}
#{{ $role->id }}
|
{{ $role->guard_name }} | @if($isProtected) محمي @else نشط @endif | {{ $role->created_at->format('Y-m-d') }} |
@canany(['edit roles','delete roles'])
@can('edit roles')
{{ __('dashboard.Edit') }}
@endcan
@can('delete roles')
@endcan
|