Stars: 684
Forks: 232
Pull Requests: 304
Issues: 56
Watchers: 29
Last Updated: 2022-12-01 16:45:05
A CMS like modular starter application project built with Laravel 9.x.
License: GNU General Public License v3.0
Languages: PHP, Shell, Blade, JavaScript, CSS, SCSS
Laravel Starter is a Laravel 9.x based simple starter project. Most of the commonly needed features of an application like Authentication, User and Role management Application Backend, Backup, Logviewer are available here. It is modular, so you can use this project as a base and build your own modules. You can use the same module in any of the Laravel Starter
based projects.
Please let me know your feedback and comments.
If you discover any security related issues, please send an e-mail to Nasir Khan Saikat via [email protected] instead of using the issue tracker.
Check the following demo project. It is just a straight installation of the project without any modification.
Demo URL: http://laravel.nasirkhn.com
User: [email protected]
Pass: secret
User: [email protected]
Pass: secret
If you want to test the application on you local with additional demo data you may use the following command. By using this you can truncate the posts, categories, tags and comments
table and insert new demo data.
--fresh
option will truncate the tables, without this command new set to data will be inserted only.
php artisan starter:insert-demo-data --fresh
We have created a number of custom commands for the project. The commands are listed below with a brief about the use of it.
To create a project use the following command, you have repalce the MODULE_NAME with the name of the module.
php artisan module:build MODULE_NAME
You may want to use --force
option to overwrite the existing module. if you use this option, it will replace all the exisitng files with the defalut stub files.
php artisan module:build MODULE_NAME --force
composer clear-all
this is a shortcut command clear all cache including config, route and more
composer fix-cs
apply the code style fix by this command.
A number of custom commands are available to add and update role-permissions. Please read the Role - Permission Wiki page, where you will find the list of commands with examples.
The Laravel Starter
comes with a number of features which are the most common in almost all the applications. It is a template project which means it is intended to build in a way that it can be used for other projects.
It is a modular application, and a number of modules are installed by default. It will be helpful to use it as a base for the future applications.
Backend
and Frontend
namespace.Modules
. Module like Posts, Comments, Tags are separated from the core features like User, Role, PermissionFollow the steps mentioned below to install and run the project. You may find more details about the installation in Installation Wiki.
composer install
.env
file by copying the .env.example
. You may use the command to do that cp .env.example .env
.env
filephp artisan migrate --seed
php artisan storage:link
php artisan serve
from the project root and visit http://127.0.0.1:8000
After creating the new permissions use the following commands to update cashed permissions.
php artisan cache:forget spatie.permission.cache
This project is configured with Laravel Sail (https://laravel.com/docs/9.x/sail). You can use all the docker functionalities here.
FontAwesome & CoreUI Icons, two different font icon library is installed for the Backend theme and only FontAwesome for the Frontend. For both of the cases we used the free version. You may install the pro version separately for your own project.
Home Page
Login Page
Posts Page
Backend Dashboard