Laravel auth routes and view with bulma.io styling
Scaffolds your laravel app with bulma.io.
Masterview, Login, Register, Passwords, Pagination.., (*1)
WIP: Created from a noob ... so don't use it, (*2)
Version: 0.1.1, (*3)
php artisan make:bulma-auth
, (*4)
A. Require the Package, (*5)
composer require ridrog/bulma-auth
B. Add the Command, (*6)
@ app/console/kernel.php, (*7)
use Ridrog\BulmaAuth\Console\MakeBulmaAuthCommand;
and, (*8)
protected $commands = [ .... MakeBulmaAuthCommand::class .... ];
C. Run the command, (*9)
php artisan make:bulma-auth
, (*10)
D. Compile the frontend stuff, (*11)
npm install --save-dev bulma font-aweseome
, (*12)
and, (*13)
npm run dev
, (*14)
What happend?, (*15)
We copy a lot of stuff into the app
- A Masterview with header, footer and some sections
- A modified Version of the Home and the Welcome View
- Views for login/register and password resets
- Two Controller (WelcomeController and HomeController)
- Sass, with all the bulma variables and fontawesome
- Bootstrap.js, only vue and axios.
- Font-awesome fonts
- A pagination partial, (*16)