https://github.com/laravel-frontend-presets/laravel-preset-bootstrap4
https://github.com/laravel-frontend-presets/laravel-preset-bootstrap4
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/laravel-frontend-presets/laravel-preset-bootstrap4
- Owner: laravel-frontend-presets
- Created: 2017-08-17T05:12:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-09T05:14:52.000Z (over 7 years ago)
- Last Synced: 2025-04-11T04:40:03.682Z (2 months ago)
- Language: HTML
- Size: 32.2 KB
- Stars: 39
- Watchers: 2
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 5.5.x Front-end Preset For Bootstrap 4
Preset for Bootstrap 4 scaffolding on new Laravel 5.5.x project.
*Current version*: **Bootstrap 4 beta**
## Usage
1. Fresh install Laravel 5.5.x and `cd` to your app.
2. Install this preset via `composer require laravel-frontend-presets/bootstrap-4`. Laravel 5.5.x will automatically discover this package. No need to register the service provider.
3. Use `php artisan preset bootstrap4` for basic Bootstrap 4 preset. **OR** Use `php artisan preset bootstrap4-auth` for basic preset, Auth route entry and Bootstrap 4 Auth views in one go. (**NOTE**: If you run this command several times, be sure to clean up the duplicate Auth entries in `routes/web.php`)
4. `npm install`
5. `npm run dev`
6. Configure your favorite database (mysql, sqlite etc.)
7. `php artisan migrate` to create basic user tables.
8. `php artisan serve` (or equivalent) to run server and test preset.