@extends('layouts.app') @section('title', '📁 ISMS 目錄管理') @section('content')

ISMS 目錄管理

返回文件列表
@foreach(['success','error'] as $msg) @if(session($msg))
{{ session($msg) }}
@endif @endforeach
{{-- 左欄:目前目錄樹 --}}
目前目錄({{ $roots->count() }} 個頂層)
@if($roots->isEmpty())
尚無目錄
@else
@foreach($roots as $root) {{-- 頂層 --}}
{{ $root->icon_emoji }} {{ $root->name }} {{ $root->documents_count }} 份
@csrf @method('DELETE')
{{-- 子分類 --}} @foreach($root->children as $child)
{{ $child->name }} {{ $child->documents_count }} 份
@csrf @method('DELETE')
@endforeach
@endforeach
@endif
{{-- 右欄:新增目錄 --}}
新增目錄
@csrf
{{-- 編輯目錄 Modal --}} @push('scripts') @endpush @endsection