PHP code example of abdelhamiderrahmouni / filament-profile

1. Go to this page and download the library: Download abdelhamiderrahmouni/filament-profile library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

abdelhamiderrahmouni / filament-profile example snippets


    'pages' => [
        // ...
        'register' => [
            // ...
            \AbdelhamidErrahmouni\FilamentProfile\Pages\Profile::class
        ],
    ],

namespace App\Filament\Pages;

use AbdelhamidErrahmouni\FilamentProfile\Pages\Profile as BaseProfile;

class Profile extends BaseProfile
{
    // ...
}
bash
php artisan vendor:publish --tag="filament-profile-views"
bash
php artisan filament:page Profile