15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Filament\Guest\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Vinyl extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'heroicon-o-document-text';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static string $view = 'filament.guest.pages.vinyl';
|
|
}
|