PHP code example of michaeld555 / filament-explorer

1. Go to this page and download the library: Download michaeld555/filament-explorer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

michaeld555 / filament-explorer example snippets


->plugin(
    \Michaeld555\FilamentExplorer\FilamentExplorerPlugin::make()
        ->hiddenFolders([
            base_path('app')
        ])
        ->hiddenFiles([
            base_path('.env')
        ])
        ->hiddenExtensions([
            "php"
        ])
        ->allowCreateFolder()
        ->allowEditFile()
        ->allowCreateNewFile()
        ->allowRenameFile()
        ->allowDeleteFile()
        ->allowMarkdown()
        ->allowCode()
        ->allowPreview()
        ->hideFromPanel() // Optionally, hide menu navigation from the panel
        ->basePath(base_path())
)
bash
php artisan filament-explorer:install
bash
php artisan vendor:publish --tag="filament-explorer-config"
bash
php artisan vendor:publish --tag="filament-explorer-views"
bash
php artisan vendor:publish --tag="filament-explorer-lang"