Files
Skunk-Lounge/app/Filament/User/Pages/Profile.php
2025-09-05 23:48:39 +02:00

14 lines
288 B
PHP

<?php
namespace App\Filament\User\Pages;
use Filament\Pages\Page;
class Profile extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-user-circle';
protected static string $view = 'filament.user.pages.profile';
protected static ?int $navigationSort = 4;
}