@extends('layouts.admin') @section('title') Admin | UserGroup Details @endsection @section('content')

UserGroup / Details

{{-- Back Button --}} Back {{-- Edit Button --}}

{{ $role->name }}

  • Name: {{ $role->name }}
  • Guard Name: {{ $role->guard_name }}
  • Created At: {{ $role->created_at->format('d M Y, h:i A') }}
    {{--
  • Updated At: {{ $role->updated_at->format('d M Y, h:i A') }}
  • --}} {{--
  • Permissions: @if($role->permissions && $role->permissions->count() > 0) @foreach($role->permissions as $permission) {{ $permission->name }} @endforeach @else - @endif
  • --}}
@endsection