@extends('layouts.app') @section('title', '역할 수정') @section('content')

역할 수정

← 목록으로

기본 정보

최대 100자까지 입력 가능합니다.

API: REST API용, Web: 웹 인증용

최대 500자까지 입력 가능합니다.

권한 선택

@if($menus->isEmpty())

선택 가능한 메뉴가 없습니다.

테넌트를 선택하거나 메뉴를 먼저 생성해주세요.

@else
@foreach($menus as $index => $menu) @foreach($permissionTypes as $type) @endforeach @endforeach
# 메뉴명 조회 생성 수정 삭제 승인 내보내기 관리
{{ $index + 1 }}
@if(($menu->depth ?? 0) > 0) @endif {{ $menu->name }}
id][$type]) && $permissions[$menu->id][$type] ? 'checked' : '' }} class="h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500 cursor-pointer permission-checkbox">
@endif

역할 정보

역할 ID: #{{ $role->id }}
Guard: {{ strtoupper($role->guard_name) }}
생성일: {{ $role->created_at->format('Y-m-d H:i') }}
수정일: {{ $role->updated_at->format('Y-m-d H:i') }}
취소
@endsection @push('scripts') @endpush