Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Profile Filament Plugin Laravel Package

rawilk/profile-filament-plugin

Filament plugin that jumpstarts a user profile area with multi-factor authentication, password and session management, migrations, and sensible defaults—opinionated but customizable. Designed to remove boilerplate and integrate cleanly into your panel.

View on GitHub
Deep Wiki
Context7

title: Custom Pages sort: 5

Introduction

Your application may need additional profile pages that are not provided by the plugin. Since we use a cluster to group all the profile pages together, it's easy to create and add your own profile pages.

Create your profile page

Create a Filament Page as you normally would for your panel, and then set the page's $cluster property to ProfileCluster.

Here's a simple example to add a new profile page and place it under the Profile Info page in the cluster navigation:

namespace App\Filament\Pages;

use BackedEnum;use Filament\Pages\Page;
use Filament\Schemas\Schema;
use Filament\Schemas\Components\Text;
use Rawilk\ProfileFilament\Filament\Clusters\ProfileCluster;
use Filament\Support\Icons\Heroicon;

class NotificationSettings extends Page
{
    protected static ?string $cluster = ProfileCluster::class;

    protected static ?int $navigationSort = 5;

    protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedBell;

    public static function getNavigationLabel(): string
    {
        return __('Notification Settings');
    }

    public function content(Schema $schema): Schema
    {
        return $schema
            ->components([
                Text::make('Hello World!'),
            ]);
    }
}

As long as your page is picked up by your panel, it will be automatically added to the profile cluster navigation. You are able to customize anything about the page like you normally can with any other Filament page; you are just required to set the $cluster property on it so that it shows up properly in the profile cluster navigation.

{tip} For page sort flexibility, we stagger each of the plugin's profile pages sort orders in increments of 10.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
cuci/prototurk-sdk-symfony
clementtalleu/easyadmin-markdown-bundle
codeflextech/permission-manager
karnoweb/livewire-datepicker
sayedenam/sayed-dashboard
milito/query-filter
apiboxsym/user-bundle
apiboxsym/health-check-bundle
jayeshmepani/jpl-moshier-ephemeris-php
elnasnato/laraliveui
labrodev/rest-sdk
sampaui/sampaui
babelqueue/php-sdk
facebook/capi-param-builder-php
babelqueue/symfony
hamzi/corewatch
minionfactory/raw-hydrator
hexters/coinpayment
rjcodes/rjcms
act-training/laravel-permissions-manager