PHP code example of backstage / announcements

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

    

backstage / announcements example snippets


return [
];

use Backstage\Announcements\AnnouncementsPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            AnnouncementsPlugin::make(),
        ]);
}

AnnouncementsPlugin::make()
    ->canRegisterNavigation(false) // Hide from navigation

AnnouncementsPlugin::make()
    ->canRegisterNavigation(true) // Show in navigation (default)

AnnouncementsPlugin::make()
    ->forceScopes([
        'App\\Filament\\Resources\\Users\\UserResource',
        'App\\Filament\\Resources\\Products\\ProductResource',
        'App\\Filament\\Pages\\Dashboard',
    ])
css
@source '../../../../vendor/backstage/announcements/resources/**/*.blade.php';
bash
php artisan vendor:publish --tag="backstage-announcements-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="backstage-announcements-views"