Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Builder | 999 | 28 | 9 | 4 years ago | 106 | September 06, 2018 | 8 | mit | PHP | |
Prepare your Laravel apps incredibly fast, with various commands, services, facades and boilerplates. | ||||||||||
Spa Starter Kit | 926 | 5 years ago | 24 | mit | PHP | |||||
A highly opinionated starter kit for building Single Page Applications with Laravel and Vue.js | ||||||||||
Laravel Starter | 914 | 4 days ago | 48 | September 03, 2023 | 4 | gpl-3.0 | JavaScript | |||
A CMS like modular starter application project built with Laravel 10.x. | ||||||||||
Laravel Boilerplate | 856 | 7 months ago | 12 | April 01, 2020 | 2 | mit | PHP | |||
Laravel Boilerplate / Starter Kit with Gentelella Admin Theme | ||||||||||
Laravel Api | 385 | a year ago | 39 | August 12, 2022 | mit | Blade | ||||
Laravel API starter Kit will provide you with the tools for making API's that everyone will love | ||||||||||
Laravel Enterprise Starter Kit | 357 | 5 years ago | 5 | May 10, 2018 | 16 | gpl-3.0 | JavaScript | |||
👔 Enterprise Web application starter kit or template using Laravel | ||||||||||
Laravel Starter Kit | 263 | 3 years ago | 17 | PHP | ||||||
Laravel 7.0~ Starter Kit Powered by VueJS + Material Design(Vuetify) | ||||||||||
Laravel Scaffold | 122 | 3 years ago | 4 | PHP | ||||||
The base for developing awesome projects | ||||||||||
Laravel6 Api Boilerplate | 74 | 3 years ago | 8 | November 23, 2019 | 3 | PHP | ||||
A Laravel 6 (LTS) Backend API starter project kit template/boilerplate. | ||||||||||
Laravel Starter | 66 | 2 years ago | n,ull | mit | PHP | |||||
😺 Your next laravel-api-starter in 30 seconds |
Laravel Starter is a Laravel 10.x based simple starter project. Most of the commonly needed features of an application like Authentication
, Authorisation
, User
and Role management
, Application Backend
, Backup
, Log viewer
are available here. It is modular, so you may use this project as a base and build your own modules. A module can be used in any 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: https://laravel.nasirkhn.com
You may use the following account credentials to access the application backend.
User: [email protected]
Pass: secret
User: [email protected]
Pass: secret
If you want to test the application on your local machine with additional demo data you may use the following command.
php artisan starter:insert-demo-data --fresh
There are options to truncate the posts, categories, tags, and comments
tables and insert new demo data.
--fresh
option will truncate the tables, without this command new set of data will be inserted.
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 their 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
We are now using Laravel Pint
to make the code style stays clean and consistent as the Laravel Framework. Use the following command to apply CS-Fix.
composer pint
Several 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 several features which are the most common in almost all 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 some modules are installed by default. It will be helpful to use it as a base for future applications.
Backend
and Frontend
namespace.Modules
. A module like Posts, Comments, and 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/sail). You can use all the docker functionalities here. To install using docker and sail:
composer install
.env
file by copying the .env-sail
. You may use the command to do that cp .env-sail .env
.env
filesail up
(consider adding this to your alias: alias sail='[ -f sail ] && sh sail || sh vendor/bin/sail'
)sail artisan migrate --seed
sail artisan storage:link
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 project.
Home Page
Login Page
Posts Page
Backend Dashboard