15 lines
289 B
PHP
Raw Normal View History

2024-12-10 15:28:14 -08:00
<?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';
}