A Laravel package to manage user profiles.
composer require baberuka/profilehubIf the previous command doesn't work, try specifying the parameters more explicitly.
composer require "baberuka/profilehub:dev-main" --no-interaction --prefer-distIf you're not using Laravel auto-discovery, register the provider manually in config/app.php. Add the ProfileHubServiceProvider calls to the providers section.
'providers' => [
BabeRuka\ProfileHub\ProfileHubServiceProvider::class,
],
php artisan vendor:publish --tag=profilehub-config
php artisan vendor:publish --tag=profilehub-views
php artisan vendor:publish --tag=profilehub-assets
php artisan vendor:publish --tag=profilehub-seeders
php artisan migrate --path=vendor/baberuka/profilehub/database/migrations/2025_04_23_111700_create_pages_table.php --force
php artisan profilehub:migratephp artisan db:seed --class="Database\\Seeders\\DatabaseSeeder" --forceVisit /profilehub/index to check if it's working.