mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Custom Multi DB User Provider * Multi DB Authentication provider * Finalized Multi Auth DB * Apply fixes from StyleCI (#22)
22 lines
695 B
PHP
22 lines
695 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('master');
|
|
});
|
|
Route::get('/logins', function () {
|
|
return view('login.login');
|
|
});
|
|
Route::get('/login', ['as' => 'login', 'uses' => 'Auth\LoginController@showLoginForm']);
|
|
Route::post('/login', ['as' => 'login', 'uses' => 'Auth\LoginController@login']);
|