Installation
Last updated
Last updated
Voyager is super easy to install. After creating your new Laravel application you can include the Voyager package with the following command:
Next make sure to create a new database and add your database credentials to your .env file, you will also want to add your application URL in the APP_URL
variable:
Finally, we can install Voyager. You can choose to install Voyager with dummy data or without the dummy data. The dummy data will include 1 admin account (if no users already exist), 1 demo page, 4 demo posts, 2 categories and 7 settings.
To install Voyager without dummy data simply run
If you prefer installing it with the dummy data run the following command:
Specified key was too long error If you see this error message you have an outdated version of MySQL, use the following solution:
And we're all good to go!
Start up a local development server with php artisan serve
And, visit the URL in your browser.
If you installed with the dummy data, a user has been created for you with the following login credentials:
email:
admin@admin.com
password:password
If you did not go with the dummy user, you may wish to assign admin priveleges to an existing user. This can easily be done by running this command:
If you wish to create a new admin user you can pass the --create
flag, like so:
And you will be prompted for the users name and password.
To add the Voyager Service Provider open up your application config/app.php
file and add TCG\Voyager\VoyagerServiceProvider::class,
in the providers
array like so:
The first thing you should do is publish the assets that come with Voyager. You can do that by running the following commands:
Next, call php artisan migrate
to migrate all Voyager table.
Now, open your User-Model (usually app/User.php
) and make the class extend \TCG\Voyager\Models\User
instead of Authenticatable
.
The next step is to add Voyagers routes to your routes/web.php
file:
Now run
php artisan db:seed --class=VoyagerDatabaseSeeder
to seed some necessary data to your database,
php artisan hook:setup
to install the hooks system, and
php artisan storage:link
to create the storage symlink to your public folder.
After that, run composer dump-autoload
to finish your installation!
This section is meant for users who are installing Voyager on an already existing Laravel installation or for users who want to perform a manual install. If this is not the case, you should go back to the documentation or skip this section.