@extends('admin.layout') @section('title', 'NAS Storage') @section('extra_styles') @endsection @section('content')

NAS Storage

{{-- 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, 'canEdit' => true, 'title' => 'NAS Storage Browser', ])
@endsection @section('scripts') @endsection