13 lines
238 B
PHP
13 lines
238 B
PHP
<?php
|
|
|
|
namespace App\Filament\User\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class Profile extends Page
|
|
{
|
|
protected static ?string $navigationIcon = 'carbon-user-profile';
|
|
|
|
protected static string $view = 'filament.user.pages.profile';
|
|
}
|