@extends('layouts.app') @section('title', 'Rol Detayları') @section('content')

Rol Detayları

Genel Bilgiler
ID: {{ $role->id }}
Rol Adı: {{ $role->name }}
Slug: {{ $role->slug }}
Kullanıcı Sayısı: {{ $role->users->count() }}
Oluşturulma: {{ $role->created_at->format('d.m.Y H:i') }}
Son Güncelleme: {{ $role->updated_at->format('d.m.Y H:i') }}
İzinler
@if($role->permissions && count($role->permissions) > 0)
@foreach($role->permissions as $permission)
{{ $permission }}
@endforeach
@else

Bu rol için tanımlanmış izin bulunmuyor.

@endif
@if($role->users->count() > 0)
Bu Role Sahip Kullanıcılar
@foreach($role->users as $user) @endforeach
ID Ad Soyad Email Kullanıcı Adı Kayıt Tarihi
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->username }} {{ $user->created_at->format('d.m.Y') }}
@endif
@endsection