APP_URL
variable:php artisan serve
And, visit the URL http://localhost:8000/admin in your browser.email:[email protected]
password:password
--create
flag, like so:php artisan migrate
to migrate all Voyager table.database/migrations
, make your changes, turn off the config option database.autoload_migrations
and then migrate.app/User.php
) and make the class extend \TCG\Voyager\Models\User
instead of Authenticatable
.routes/web.php
file:php artisan db:seed --class=VoyagerDatabaseSeeder
to seed some necessary data to your database, and
php artisan storage:link
to create the storage symlink to your public folder.composer dump-autoload
to finish your installation!