2024-12-18 14:23:43 -08:00

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';
}