Package Data | |
---|---|
Maintainer Username: | matthewfritz |
Maintainer Contact: | mattf@burbankparanormal.com (Matthew Fritz) |
Package Create Date: | 2017-03-18 |
Package Last Update: | 2017-04-19 |
Home Page: | https://packagist.org/packages/matthewfritz/laravel-cms-scaffolding |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-03-29 03:00:13 |
Package Statistics | |
---|---|
Total Downloads: | 43 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This project contains the boilerplate functionality that you would expect to see in a Laravel CMS. That way you can start working on your cool features instead of having to worry about the routing and content retrieval.
This scaffolding project is written in Laravel 5.4.
This project can be installed from Composer.
composer create-project --prefer-dist matthewfritz/laravel-cms-scaffolding my-custom-cms
Out of the box, you get a bunch of features. This laravel-cms-scaffolding
project can actually be used as a basic lightweight CMS on its own. However, you will probably want to use it as a jumping-off point for larger projects since it takes care of the CMS boilerplate for you.
Themes are located in the resources/views/themes
directory. There are two example bare-bones themes included that demonstrate various bits of functionality supported by this project.
This theme is located in resources/views/themes/default
.
This theme is automatically applied when a site does not specify which one to use. It uses a regular page rendering template but also includes a custom 404 page template.
It is a basic Bootstrap theme.
This theme is located in resources/views/themes/carousel
.
This theme includes a regular page rendering template but also includes a rendering template to be used specifically for the landing page of a site.
It is a basic Bootstrap theme but the landing page uses a custom rendering template that includes a Bootstrap carousel.
This project comes with several migrations. The migrations included create the following tables:
users
roles
user_roles
sites
pages
revisions
There is also seeder data for every table that sets-up two example sites along with the relevant revisions, pages, and themes.
The Laravel Debugbar (barryvdh/laravel-debugbar
) is one of the dependencies for this repository. If you do not wish to use the debug bar, either remove the service provider in config/app.php
or set APP_DEBUG=false
in your .env
file.