15 lines
300 B
PHP
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';
|
|
}
|