There was an error while loading. Please reload this page.
First you need a laravel 5.5 project ready to use.
Add the package to require section of composer :
{ "require": { "serverfireteam/panel": "1.7.*" }, }
Note :
For Laravel 5.4 use 1.6.* For laravel 5.3 use 1.5.* For laravel 5.2 use 1.4.* For laravel 5.1 use 1.3.*
And run the composer update command, the package and its dependencies will be installed.
Add the ServiceProvider of the package to the list of providers in the file config/app.php :
'providers' => array( Serverfireteam\Panel\PanelServiceProvider::class )
Run the following command in order to publish configs, views and assets :
php artisan vendor:publish
Go to the root of your project and run this command in order to set up the database :
php artisan migrate --path="vendor/serverfireteam/panel/src/database/migrations"
Go to your domain.com/panel and you can login with the following username and password :
user : admin@change.me
password : 12345