jsdecena/cms

A CMS powered by laravel
190 9
Install
composer require jsdecena/cms
Latest Version:2.1.16
PHP:^7.2
License:MIT
Last Updated:Jan 5, 2020
Links: GitHub  ·  Packagist
Maintainer: jsdecena

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 for the awesome dashboard look!

Installation

  • Step1: Add this to your root composer.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


    $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 OR

  • Step9: Go to http://localhost:8000/admin for backend login

  • Step10: Use this credentials to login: email: john@doe.com | password: Testing123

  • Enjoy!

Check out the wiki for the screenshots of the app!

Related Packages

spatie/laravel-google-fonts

Manage self-hosted Google Fonts in Laravel apps

1,255,161 494
tightenco/jigsaw

Simple static sites with Laravel's Blade.

458,885 2,251
roquie/laravel-dusk-select2

Select2.js support for the Laravel Dusk testing.

362,567 41
haruncpi/laravel-log-reader

A simple and beautiful laravel log reader

335,938 380
laravel-frontend-presets/argon

Laravel 9.x Front-end preset for argon

254,027 232