@extends('admin.layout') @section('title', 'Detail Role') @section('content')
| Nama Role: | {{ $role->name }} @if(in_array($role->name, ['superadmin', 'admin'])) System Role @endif |
|---|---|
| Deskripsi: | {{ $role->description ?? '-' }} |
| Total Permissions: | {{ $role->permissions->count() }} |
| Dibuat: | {{ $role->created_at->format('d/m/Y H:i:s') }} |
| Diperbarui: | {{ $role->updated_at->format('d/m/Y H:i:s') }} |