15 lines
288 B
PHP
15 lines
288 B
PHP
<?php
|
|
|
|
namespace App\Filament\Guest\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class ContactUs extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'lucide-contact';
|
|
|
|
protected static ?int $navigationSort = 2;
|
|
|
|
protected static string $view = 'filament.guest.pages.contact-us';
|
|
}
|