Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/haq/laravel-seal

Basic authentication scaffolding using Blade, Boostrap and Livewire.
https://github.com/haq/laravel-seal

authentication-scaffolding bootstrap laravel livewire

Last synced: about 2 months ago
JSON representation

Basic authentication scaffolding using Blade, Boostrap and Livewire.

Awesome Lists containing this project

README

        

# laravel seal
Basic authentication scaffolding using [Blade](https://laravel.com/docs/8.x/blade), [Bootstrap 5](https://v5.getbootstrap.com/) and [Livewire](https://laravel-livewire.com/).

## Screenshot
![login](https://i.imgur.com/lvLLOKb.png)

## Installation
```bash
composer require haq/seal --dev
php artisan seal:install
npm install && npm run dev
```

## Bootstrap Pagination
Call the paginator's useBootstrap method within your AppServiceProvider.
```php
use Illuminate\Pagination\Paginator;

public function boot()
{
Paginator::useBootstrap();
}
```