mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-30 00:54:45 +02:00
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Introduction extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
protected static string $view = 'filament.pages.introduction';
|
|
}
|