dev-develop
dev-developA CMS powered by laravel
MIT
The Requires
The Development Requires
by Jeff Simons Decena
A CMS powered by laravel
composer.json
"require": { "jsdecena/cms": "^2.1" }
Step2: Run this in your terminal php artisan vendor:publish --tag=jsdcms --force
, (*1)
Step3: Rename .env.example
to .env
and set your database credentials, (*2)
Step4: Run this in your terminal php artisan key:generate
, (*3)
Step5: Uncomment the UsersTableSeeder::class
call in /database/seeds/DatabaseSeeder.php
, (*4)
Step6: Add these lines in the /database/seeds/DatabaseSeeder.php
, (*5)
$this->call(PageTableSeeder::class); $this->call(PostTableSeeder::class);
Step7: Run this in your terminal composer dump-autoload && php artisan migrate --seed && php artisan serve
, (*6)
Step8: Go to http://localhost:8000/blog OR, (*7)
Step9: Go to http://localhost:8000/admin for backend login, (*8)
Step10: Use this credentials to login: email: john@doe.com
| password: Testing123
, (*9)
Enjoy!, (*10)
A CMS powered by laravel
MIT