LaravelPackages.net
Acme Inc.
Toggle sidebar
susheelbhai/laravel_starter_kit

Starter Kit developed for Laravel.

708
1
v3.13.9
About susheelbhai/laravel_starter_kit

susheelbhai/laravel_starter_kit is a Laravel package for starter kit developed for laravel.. It currently has 1 GitHub stars and 708 downloads on Packagist (latest version v3.13.9). Install it with composer require susheelbhai/laravel_starter_kit. Discover more Laravel packages by susheelbhai or browse all Laravel packages to compare alternatives.

Last updated

Starter Kit for Laravel Project

Installation

Laravel

Require this package in your composer.json and update composer. This will download the package.

:warning: This package must be installed just after creating new laravel project. Installing in working project may cause overwriting your important files.

composer require susheelbhai/laravel_starter_kit

Configuration

Initial Settings

Change initial settings by runnung the command

php artisan starter_kit:initial_settings

Migrate database

Migrate databse tables and seed with the following commands

php artisan migrate
php artisan db:seed

Alternatively you can refresh the database and seed with the following commands

php artisan migrate:fresh --seed

Final Settings

Change Final settings by runnung the command

php artisan starter_kit:final_settings

Create a build

Make production build

npm run build

run development environment

npm run dev

Make production build

php artisan storage:link

Installation with single action

create a new folder with the appropriate project name, open terminal and run the following command.

laravel new

composer require susheelbhai/laravel_starter_kit
php artisan starter_kit:initial_settings
php artisan migrate:fresh --seed
php artisan starter_kit:final_settings
php artisan storage:link
npm run build
npm run dev

start development server.

if php artisan serve is not working, you use the alternative command

php -S 127.0.0.1:23456 -t public

Deployment checklist

update .env file

APP_ENV=production
APP_DEBUG=false
APP_URL="actual url"

AppServiceProvider

replace public_html with your actual public folder name

https://yourdomain.com/link-storage

License

This Laravel Starter Kit Package is developed by susheelbhai for personal use software licensed under the MIT license

Star History Chart