PHP code example of mariomka / advanced-dashboards-for-filament

1. Go to this page and download the library: Download mariomka/advanced-dashboards-for-filament 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/ */

    

mariomka / advanced-dashboards-for-filament example snippets


public function panel(Panel $panel): Panel
{
    return $panel
        // other configurations
        ->discoverQuestions(in: app_path('Filament/Questions'), for: 'App\\Filament\\Questions')
        // other configurations
}

[
    'load_css' => false,
];
bash
php artisan vendor:publish --tag="advanced-dashboards-for-filament-config"
bash
php artisan vendor:publish --tag="advanced-dashboards-for-filament-views"