Package Data | |
---|---|
Maintainer Username: | jsdecena |
Maintainer Contact: | jeff.decena@yahoo.com (Jeff Simons Decena) |
Package Create Date: | 2016-06-08 |
Package Last Update: | 2020-01-05 |
Home Page: | |
Language: | HTML |
License: | MIT |
Last Refreshed: | 2024-11-22 03:12:01 |
Package Statistics | |
---|---|
Total Downloads: | 187 |
Monthly Downloads: | 3 |
Daily Downloads: | 0 |
Total Stars: | 9 |
Total Watchers: | 2 |
Total Forks: | 5 |
Total Open Issues: | 1 |
composer.json
"require": {
"jsdecena/cms": "2.0.*"
}
config/app.php
in providers
array
'providers' => [
Jsdecena\Cms\CmsServiceProvider::class,
]
Step3: Run this in your terminal php artisan vendor:publish
Step4: Rename .env.example
to .env
and set your database credentials
Step5: Run this in your terminal php artisan key:generate
Step6: Uncomment the UsersTableSeeder::class
call in /database/seeds/DatabaseSeeder.php
Step7: Add these lines in the /database/seeds/DatabaseSeeder.php
$this->call(PageTableSeeder::class);
$this->call(PostTableSeeder::class);
Step8: Run this in your terminal composer dump-autoload && php artisan migrate --seed && php artisan serve
Step9: Go to http://localhost:8000/blog OR
Step10: Go to http://localhost:8000/admin for backend login
Step11: Use this credentials to login: email: john@doe.com
| password: Testing123
Enjoy!