A collection of dependencies aimed to streamline development of a brand new Laravel project
wisnet/laravel-starter-kit is a Laravel package for a collection of dependencies aimed to streamline development of a brand new laravel project.
It currently has 1 GitHub stars and 13 downloads on Packagist (latest version v1.1.0).
Install it with composer require wisnet/laravel-starter-kit.
Discover more Laravel packages by wisnet
or browse all Laravel packages to compare alternatives.
Last updated
The Laravel Starter Kit is a compilation of packages that will help you speed up the development process when starting with a fresh Laravel project.
This starter kit includes the following composer packages:
The following front-end packages will be installed:
The following views will be generated:
views
├── auth
│ ├── login.blade.php
│ ├── passwords
│ │ ├── confirm.blade.php
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ ├── register.blade.php
│ └── verify.blade.php
├── home.blade.php
└── layouts
└── app.blade.php
Authentication views will be registered with Fortify.
The following front-end assets will be generated:
├── js
│ ├── ExampleComponent.vue
│ ├── app.js
│ └── bootstrap.js
└── sass
├── abstracts
│ ├── _abstracts.scss
│ ├── _colors.scss
│ ├── _functions.scss
│ ├── _mixins.scss
│ └── _typography.scss
├── app.scss
├── base
│ ├── _base.scss
│ ├── _buttons.scss
│ ├── _form-elements.scss
│ ├── _headings.scss
│ └── _links.scss
├── components
│ └── _components.scss
├── layout
│ ├── _dashboard.scss
│ ├── _footer-main.scss
│ ├── _header-main.scss
│ └── _layout.scss
├── modules
│ └── _modules.scss
└── pages
└── _pages.scss
The starter kit uses Vue 3 and will provide you with an example component as well as your app already created and mounted.
Add the starter kit to your composer file:
composer require wisnet/laravel-starter-kit
Run php artisan starter-kit:install to install the packages.
Next, run migrations once all dependencies have been installed.
php artisan migrate
Run npm install to install packages.
Compile front-end assets by running mix
In the event new dependencies are added to the starter kit or assets change, you can individually install or publish them by running the following commands:
php artisan starter-kit:telescope installs and publishes Telescope assets.php artisan starter-kit:fortify installs and publishes Fortify assets.php artisan starter-kit:sentry installs and publishes Sentry assets.php artisan starter-kit:views publishes views.php artisan starter-kit:assets publishes JS and CSS assets.php artisan starter-kit:node adds dependencies to package.json.php artisan starter-kit:webpack updates webpack.mix.js.If you're planning on using Sentry for error reporting make sure to get a DSN (visit sentry.io to create a new account or access your existing one).
Next, run the following command to finish setting up Sentry:
php artisan sentry:publish --dsn=paste-your-dsn-here
Don't forget to uncomment the report method inside your application's exception handler.
The official documentation for each package can be found in the following links: