An open API service indexing awesome lists of open source software.

https://github.com/hexters/auth

hexters/auth is a starter kit package for Laravel that provides basic authentication features and allows the development of multiple authentication setups with a simple and minimalist implementation using Livewire and Volt, alongside Blade and Tailwind CSS.
https://github.com/hexters/auth

Last synced: 3 months ago
JSON representation

hexters/auth is a starter kit package for Laravel that provides basic authentication features and allows the development of multiple authentication setups with a simple and minimalist implementation using Livewire and Volt, alongside Blade and Tailwind CSS.

Awesome Lists containing this project

README

          

# Hexters/Auth

[![Latest Stable Version](https://poser.pugx.org/hexters/auth/v/stable)](https://packagist.org/packages/hexters/auth)
[![Total Downloads](https://poser.pugx.org/hexters/auth/downloads)](https://packagist.org/packages/hexters/auth)
[![License](https://poser.pugx.org/hexters/auth/license)](https://packagist.org/packages/hexters/auth)

Hexters/Auth is a Laravel package that allows you to create multiple authentication pages, similar to Laravel Breeze. The package is supported by [Livewire Volt](https://livewire.laravel.com) and [TailwindCSS](https://tailwindcss.com). For the components, this package uses [maryUI](https://mary-ui.com).

![](https://raw.githubusercontent.com/hexters/auth/main/auth-schema.jpg)

## Installation

Add the package repository by running the following command:
```bash
composer require hexters/auth
```

Install the package by running:
```bash
php artisan auth:install
```

To create a login page, simply follow this command:
```bash
php artisan make:auth
```

And last build assets
```bash
npm run build
```