Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
/ laravel-seal Public archive

Basic authentication scaffolding using Blade, Boostrap and Livewire.

License

Notifications You must be signed in to change notification settings

haq/laravel-seal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel seal

Basic authentication scaffolding using Blade, Bootstrap 5 and Livewire.

Screenshot

login

Installation

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.

use Illuminate\Pagination\Paginator;

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