13 lines
241 B
PHP
13 lines
241 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';
|
|
}
|