Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/haq/laravel-seal
- Owner: haq
- License: mit
- Archived: true
- Created: 2020-11-04T00:59:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-31T12:39:22.000Z (over 3 years ago)
- Last Synced: 2024-09-21T13:33:46.390Z (about 2 months ago)
- Topics: authentication-scaffolding, bootstrap, laravel, livewire
- Language: Blade
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
}
```