https://github.com/ntamvl/laravel5-auth-template
Laravel 5.1 Auth Template
https://github.com/ntamvl/laravel5-auth-template
Last synced: about 2 months ago
JSON representation
Laravel 5.1 Auth Template
- Host: GitHub
- URL: https://github.com/ntamvl/laravel5-auth-template
- Owner: ntamvl
- License: mit
- Created: 2015-11-17T09:17:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-17T09:37:59.000Z (over 9 years ago)
- Last Synced: 2024-10-18T21:59:42.754Z (7 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel 5.1 Auth Template
Copy views folder to views Laravel App
```
app/resources/views
```Add route code to file
```
app\Http\routes.php
```With code:
```
Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
```