This is an example of how to build a CMS from scratch with Laravel and Vue. You can read the article on Pusher here:
- Download or clone the project.
cd
to the project directory.- Rename
.env.example
to.env
- Run the command
composer install
. - Run the command
php artisan key:generate
to generate an application key. - Configure the database settings in the
.env
file. - Update the
PUSHER_APP_*
keys in the.env
file. - Change the
BROADCAST_DRIVER
topusher
. - Migrate the database by running this command:
php artisan migrate --seed
. - Run the command:
php artisan serve
to start the app.
- Laravel framework
- PHP