Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
/ fence Public archive

Fence is a package for authentication views using Laravel fortify.

License

Notifications You must be signed in to change notification settings

irsyadadl/fence

Repository files navigation

Logo Breeze

Total Downloads Latest Stable Version License

Introduction

Fence is a package for authentication views using Laravel fortify package! It using tailwind css!

Hey, Make you sure you do not include fence into your existing app. Please add fence in your new laravel project.

Install

laravel new app

Next, you will need to install the fortify package, it's required.

composer require laravel/fortify

Next, publish Fortify's resources using the vendor:publish command:

php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"

Next, you will need to register FortifyServiceProvider in the config/app.php. Open that file, and add this one line of code.

'providers' => [
    // ...
    App\Providers\FortifyServiceProvider::class,
],

After that, we can start by installing the fence package like so:

composer require irsyadadl/fence --dev

When it's done, we can continue to install that boilerplate like this.

php artisan fence:install

And you're done, things you need to do next is configure your database connection so that you can run php artisan migrate.

Project supported by