Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Breezify Laravel Package

codesren/breezify

View on GitHub
Deep Wiki
Context7

Breezify is Laravel Breeze and Fortify Mashup ๐ŸŒ€

Breezify is a Laravel authentication scaffolding package that combines the clean UI approach of Laravel Breeze with the powerful backend features of Laravel Fortify. It offers out-of-the-box authentication views, profile management, email verification, and two-factor authentication โ€” all ready to go.

Built and maintained by Renish Siwakoti


๐Ÿ“ฆ Installation

1. Require the Package via Composer

composer require codesren/breezify:dev-main

2. Publish the Breezify Assets

php artisan vendor:publish --tag=breezify & php artisan install:breezify blade

3. Register the Fortify Service Provider

Ensure the following is added to config/app.php:

App\Providers\FortifyServiceProvider::class,

โš™๏ธ Configuration Enable Fortify Views

In config/fortify.php:

'views' => true,

4. Enable Features in config/fortify.php

'features' => [
    Features::registration(),
    Features::resetPasswords(),
    Features::emailVerification(),
    Features::updateProfileInformation(),
    Features::updatePasswords(),
    Features::twoFactorAuthentication([
    'confirmPassword' => true,
    ]),
],

5. In make sure to have these View in Providers/FortifyServiceProvider.php

    # Register view
    Fortify::registerView(function () {
        return view('auth.register');
    });
    # Login view
    Fortify::loginView(function () {
        return view('auth.login');
    });
    # Forgot Password view
    Fortify::requestPasswordResetLinkView(function () {
        return view('auth.forgot-password');
    });
    # Reset Password view
    Fortify::resetPasswordView(function (Request $request) {
        return view('auth.reset-password', ['request' => $request]);
    });

    # Email verification view
    Fortify::verifyEmailView(function () {
        return view('auth.verify-email');
    });

    # Password confirmation view
    Fortify::confirmPasswordView(function () {
        return view('auth.confirm-password');
    });
    
    # Two factor authentication
    Fortify::twoFactorChallengeView(function (Request $request) {
        $recovery = $request->get('recovery',false);
        return view('auth.two-factor-challenge',compact('recovery'));
    });

๐Ÿ“ Routes

Make sure to include the published route file in routes/web.php:

require __DIR__.'/auth.php';

๐Ÿง‘โ€๐Ÿ’ป User Model Setup

6. Ensure your User model uses necessary traits and interfaces:

use Laravel\Fortify\TwoFactorAuthenticatable;
use Illuminate\Contracts\Auth\MustVerifyEmail;

class User extends Authenticatable implements MustVerifyEmail
{
    use HasFactory, Notifiable, TwoFactorAuthenticatable;

    protected $fillable = ['name', 'email', 'password'];
}

๐Ÿ›ก๏ธ Features Included

โœ… Registration & Login โœ… Email Verification โœ… Forgot & Reset Password โœ… Profile Update โœ… Password Confirmation โœ… Two-Factor Authentication โœ… Tailwind CSS UI โœ… Vite + PostCSS Ready ๐Ÿš€ Build Frontend Assets

After publishing:

npm install
npm run dev

Ensure you have Node.js, npm, and Vite configured.

7. ๐Ÿงช Run Migrations

php artisan migrate

๐Ÿค Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. ๐Ÿ“ง Support

Email: renishsiwakoti437@gmail.com

Issues: GitHub Issues

๐Ÿ“„ License

The MIT License (MIT). See LICENSE for details.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
hamzi/corewatch
minionfactory/raw-hydrator
hexters/coinpayment
rjcodes/rjcms
act-training/laravel-permissions-manager
alimarchal/laravel-chart-of-accounts
babenkoivan/elastic-scout-driver
mkwebdesign/filament-watchdog-v5
renatomarinho/laravel-page-speed
zedmagdy/filament-business-hours
renatovdemoura/blade-elements-ui
devgeek/beacon-admin
benjamin-rqt/data-watcher-bundle
atriumphp/atrium
sandermuller/package-boost-laravel
sandermuller/boost-skills
redaxo/core
yusufgenc/filament-api-forge
l3aro/rating-star-for-filament
leek/filament-subtenant-scope