Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jwt Auth | 10,992 | 4,109 | 403 | 20 days ago | 49 | February 16, 2023 | 584 | mit | PHP | |
🔐 JSON Web Token Authentication for Laravel & Lumen | ||||||||||
Jetstream | 3,765 | 19 | 10 days ago | 135 | May 30, 2023 | 1 | mit | PHP | ||
Tailwind scaffolding for the Laravel framework. | ||||||||||
Bouncer | 3,297 | 117 | 30 | 17 days ago | 55 | February 21, 2022 | 42 | mit | PHP | |
Laravel Eloquent roles and abilities. | ||||||||||
Laravel Auth | 2,902 | a month ago | 5 | mit | JavaScript | |||||
Laravel 10 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. 5 Minutes Stand-up time. | ||||||||||
Sanctum | 2,580 | 76 | 10 days ago | 53 | May 01, 2023 | mit | PHP | |||
Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs. | ||||||||||
Breeze | 2,383 | 5 | 6 days ago | 82 | August 08, 2023 | 1 | mit | PHP | ||
Minimal Laravel authentication scaffolding with Blade, Vue, or React + Tailwind. | ||||||||||
Tall | 2,042 | 1 | a month ago | 31 | May 10, 2023 | 11 | mit | Blade | ||
A TALL (Tailwind CSS, Alpine.js, Laravel and Livewire) Preset for Laravel | ||||||||||
Awesome Laravel | 1,511 | 4 months ago | 31 | |||||||
A curated list of delightful Laravel PHP framework packages and resources | ||||||||||
Sentinel | 1,466 | 786 | 136 | 2 months ago | 51 | August 10, 2023 | 38 | bsd-3-clause | PHP | |
A framework agnostic authentication & authorization system. | ||||||||||
Fortify | 1,462 | 41 | 10 days ago | 46 | March 29, 2022 | 1 | mit | PHP | ||
Backend controllers and scaffolding for Laravel authentication. |
A front-end preset for Laravel to scaffold an application using the TALL stack, jumpstarting your application's development.
If you're not familiar with the name, it's an acronym that describes the main technologies involved in the stack:
Some notable features of this package include:
Note: If you're looking for an application boilerplate that supports the TALL stack, you should check out Laravel Jetstream. It comes with authentication scaffolding, account management, teams support.
This preset is intended to be installed into a fresh Laravel application. Follow Laravel's installation instructions to ensure you have a working environment before continuing.
Then simply run the following commands:
composer require livewire/livewire laravel-frontend-presets/tall
php artisan ui tall
npm install
npm run dev
If you would like to install the preset and its auth scaffolding in a fresh Laravel application, make sure to use the --auth
flag on the ui
command:
composer require livewire/livewire laravel-frontend-presets/tall
php artisan ui tall --auth
npm install
npm run dev
Some notable features of the authentication scaffolding include:
All routes, components, controllers and tests are published to your application. The idea behind this is that you have full control over every aspect of the scaffolding in your own app, removing the need to dig around in the vendor folder to figure out how things are working.
Tailwind uses PurgeCSS to remove any unused classes from your production CSS builds. You can modify or remove this behaviour in the purge
section of your tailwind.config.js
file. For more information, please see the Tailwind documentation.
If you don't want to keep this package installed once you've installed the preset, you can safely remove it. Unlike the default Laravel presets, this one publishes all the auth logic to your project's /app
directory, so it's fully redundant.
If you are using pagination, you set the default pagination views to the ones provided in the boot
method of a service provider:
use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
Paginator::defaultView('pagination::default');
Paginator::defaultSimpleView('pagination::simple-default');
}
}