PHP code example of statview / filament-satellite

1. Go to this page and download the library: Download statview/filament-satellite 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/ */

    

statview / filament-satellite example snippets



use Statview\FilamentSatellite\SatellitePlugin;
// ...
->plugins([
    SatellitePlugin::make(),
])
// ...

use Statview\FilamentSatellite\SatellitePlugin;

SatellitePlugin::make()
    ->oneClickLogin(
        user: fn () => User::first(),
        redirect: fn () => DashboardPage::getUrl(),
    ),

use Statview\FilamentSatellite\SatellitePlugin;

SatellitePlugin::make()
    ->announcements(flag: false);