- 허용 사용자: 이경호, 전진선, 김보곤 - 웹 컨트롤러: 미허용 시 안내 뷰 반환 - API 컨트롤러: 모든 엔드포인트에 403 반환 - restricted.blade.php 안내 페이지 생성
18 lines
926 B
PHP
18 lines
926 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '급여관리 - 접근 제한')
|
|
|
|
@section('content')
|
|
<div class="flex items-center justify-center" style="min-height: 60vh;">
|
|
<div class="text-center">
|
|
<div class="text-gray-300 mb-6">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto" style="width: 80px; height: 80px;" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" />
|
|
</svg>
|
|
</div>
|
|
<h2 class="text-xl font-semibold text-gray-700 mb-2">접근이 제한된 페이지입니다</h2>
|
|
<p class="text-gray-500">급여관리는 관계자만 볼 수 있습니다.</p>
|
|
</div>
|
|
</div>
|
|
@endsection
|