Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsdecena/cms
Laravel Simple CMS Package
https://github.com/jsdecena/cms
cms cms-backend laravel laravel-cms
Last synced: about 2 months ago
JSON representation
Laravel Simple CMS Package
- Host: GitHub
- URL: https://github.com/jsdecena/cms
- Owner: jsdecena
- Created: 2016-06-08T07:59:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-05T04:35:47.000Z (almost 5 years ago)
- Last Synced: 2024-08-21T11:32:32.705Z (4 months ago)
- Topics: cms, cms-backend, laravel, laravel-cms
- Language: HTML
- Homepage:
- Size: 70.3 KB
- Stars: 8
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Simple Laravel CMS
##### This CMS is a basic bootstrap application to make your web development up and running almost instantly. It includes basic User Authentication, User, Page, Post and Category CRUD.
##### Thanks to [ADMIN LTE](https://almsaeedstudio.com/preview) for the awesome dashboard look!
### Installation
- Step1: Add this to your root `composer.json`
```json
"require": {
"jsdecena/cms": "^2.1"
}```
- Step2: Run this in your terminal `php artisan vendor:publish --tag=jsdcms --force`
- Step3: Rename `.env.example` to `.env` and set your database credentials
- Step4: Run this in your terminal `php artisan key:generate`
- Step5: Uncomment the `UsersTableSeeder::class` call in `/database/seeds/DatabaseSeeder.php`
- Step6: Add these lines in the `/database/seeds/DatabaseSeeder.php`
```json
$this->call(PageTableSeeder::class);
$this->call(PostTableSeeder::class);```
- Step7: Run this in your terminal `composer dump-autoload && php artisan migrate --seed && php artisan serve`
- Step8: Go to [http://localhost:8000/blog](http://localhost:8000/blog) OR
- Step9: Go to [http://localhost:8000/admin](http://localhost:8000/admin) for backend login
- Step10: Use this credentials to login: email: `[email protected]` | password: `Testing123`
- Enjoy!
##### Check out the [wiki](https://github.com/jsdecena/cms/wiki) for the screenshots of the app!