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

15 lines
300 B
PHP

<?php
namespace App\Filament\Guest\Pages;
use Filament\Pages\Page;
class Digitizing extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static ?int $navigationSort = -1;
protected static string $view = 'filament.guest.pages.digitizing';
}