Download the PHP package redbastie/larawire without Composer
On this page you can find all versions of the php package redbastie/larawire. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download redbastie/larawire
More information about redbastie/larawire
Files in redbastie/larawire
Package larawire
Short Description Laravel + Livewire + Bootstrap auth UI & CRUD scaffolding.
License MIT
Homepage https://github.com/redbastie/larawire
Informations about the package larawire
NO LONGER MAINTAINED
This package is no longer maintained. Please consider my latest package here: https://github.com/redbastie/tailwire
Larawire
Laravel + Livewire + Bootstrap auth UI & CRUD scaffolding.
Requirements:
- Laravel 8
- NPM
Features include:
- auth UI & CRUD scaffolding
- automatic routing & migrations
- user profile, timezones, & CRUD
- infinite scrolling & reCAPTCHA
- & more
Links:
- Tutorial: YouTube Video
- Support: GitHub Issues
- Contribute: GitHub Pulls
- Donate: PayPal
Installation
Install Laravel:
laravel new {app}
Configure the .env
app, database, & mail variables:
APP_*
DB_*
MAIL_*
Install Larawire via composer:
composer require redbastie/larawire
Now you can run the make:auth
command to generate auth UI scaffolding.
Commands
Generate auth UI scaffolding:
php artisan make:auth
Now you can visit your app URL and login using [email protected]:password
.
This user was created via the DatabaseSeeder
during auth scaffolding.
Generate CRUD scaffolding:
php artisan make:crud {model}
Remember to update the new model migrations, definitions, and CRUD rules.
Then run the migrate:auto
command afterwards.
Run automatic migrations:
php artisan migrate:auto {--fresh} {--seed}
This automatically diffs the database via doctrine using model migration
methods.
All versions of larawire with dependencies
doctrine/dbal Version ^3.0
google/recaptcha Version ^1.2
jamesmills/laravel-timezone Version ^1.9
laravel/framework Version ^8.0
livewire/livewire Version ^2.0