- Published package views to resources/views/vendor/nas-file-manager/ - Rewrote file-manager.blade.php using admin CSS variables (--bg, --bg-card, --border, --text, --brand, etc.) and Bootstrap Icons instead of Tailwind/SVGs - Replaced accordion wrapper with flat tab bar matching .adm-* tab pattern - Dialogs use --bg-card2, --border-light, and .adm-btn classes - Removed Tailwind CDN and brand color overrides from nas-storage.blade.php Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
535 B
PHP
24 lines
535 B
PHP
@extends('admin.layout')
|
|
|
|
@section('title', 'NAS Storage')
|
|
|
|
@section('content')
|
|
<div class="adm-page-header">
|
|
<h1 class="adm-page-title">
|
|
<i class="bi bi-hdd-network"></i> NAS Storage
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="adm-card">
|
|
@include('nas-file-manager::file-manager', [
|
|
'nodes' => $nodes,
|
|
'canEdit' => true,
|
|
'title' => 'NAS Storage Browser',
|
|
])
|
|
</div>
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
<script src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
|
|
@endsection
|