Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steelants/laravel-auth
https://github.com/steelants/laravel-auth
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/steelants/laravel-auth
- Owner: steelants
- License: mit
- Created: 2024-02-04T17:14:19.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T14:39:03.000Z (about 2 months ago)
- Last Synced: 2024-10-10T21:08:52.635Z (29 days ago)
- Language: PHP
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel-Auth
## Currently WIP
### Created by: [SteelAnts s.r.o.](https://www.steelants.cz/)[![Total Downloads](https://img.shields.io/packagist/dt/steelants/laravel-auth.svg?style=flat-square)](https://packagist.org/packages/steelants/laravel-auth)
## Install
1) Artisan Command
```bash
install:auth
```
2) add routes to __web.php__
```php
Route::auth();
```
### Dev Enviroment
1) Clone Repo to `[LARVEL-ROOT]/packages/`
2) Modify ;composer.json`
```json
"autoload": {
"psr-4": {
...
"SteelAnts\\LaravelAuth\\": "packages/laravel-auth/src/"
...
}
},
```
3) Add (code below) to: `[LARVEL-ROOT]/bootstrap/providers.php`
```php
SteelAnts\LaravelAuth\AuthServiceProvider::class,
```## Other Packages
[steelants/datatable](https://github.com/steelants/Livewire-DataTable)[steelants/form](https://github.com/steelants/Laravel-Form)
[steelants/modal](https://github.com/steelants/Livewire-Modal)
[steelants/boilerplate](https://github.com/steelants/Laravel-Boilerplate)