From 8a00bcecac091e5354d011366aaf738ff279c1c9 Mon Sep 17 00:00:00 2001 From: ghassan Date: Wed, 13 May 2026 13:46:00 +0300 Subject: [PATCH] =?UTF-8?q?Simplify=20NAS=20storage=20page=20=E2=80=94=20l?= =?UTF-8?q?et=20package=20Connection=20tab=20own=20the=20UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the manual connection summary card now that the package widget has a built-in Connection tab with a live test button and form fields. Co-Authored-By: Claude Sonnet 4.6 --- resources/views/admin/nas-storage.blade.php | 42 --------------------- 1 file changed, 42 deletions(-) diff --git a/resources/views/admin/nas-storage.blade.php b/resources/views/admin/nas-storage.blade.php index 53e1261..d683cce 100644 --- a/resources/views/admin/nas-storage.blade.php +++ b/resources/views/admin/nas-storage.blade.php @@ -4,17 +4,7 @@ @section('extra_styles') @endsection @@ -25,36 +15,6 @@ -{{-- Connection config summary --}} -
-
- Connection - - Settings - -
-
- @php - $conn = config('nas-file-manager.connection'); - $fields = [ - 'Protocol' => strtoupper($conn['protocol'] ?? '—'), - 'Host' => $conn['host'] ?: '—', - 'Port' => $conn['port'] ?: '—', - 'Share' => $conn['smb_share'] ?: '—', - 'Path' => $conn['path'] ?: '—', - 'User' => $conn['username'] ?: '—', - ]; - @endphp - @foreach($fields as $label => $value) -
-
{{ $label }}
-
{{ $value }}
-
- @endforeach -
-
- -{{-- NAS File Manager component (Alpine.js + Tailwind) --}}
@include('nas-file-manager::file-manager', [ 'nodes' => $nodes, @@ -65,9 +25,7 @@ @endsection @section('scripts') - -