irsyadadl / fence
Fence is a package for authentication views using Laravel fortify package.
Installs: 51
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 1
Open Issues: 0
Language:Blade
Type:package
pkg:composer/irsyadadl/fence
Requires
- php: ^8.0.2
- illuminate/console: ^9.21
- illuminate/filesystem: ^9.21
- illuminate/support: ^9.21
- illuminate/validation: ^9.21
Requires (Dev)
- orchestra/testbench: ^7.11.0
Conflicts
- laravel/framework: <9.21.0
README
Introduction
Fence is a package for authentication views using Laravel fortify package! It using tailwind css!
Hey, Make you sure you do not include
fenceinto your existing app. Please addfencein 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.