I am using a subdomain in my laravel 5 project but when I try to loggin a user, it won\'t authenticate anymore. This is my config\\session.php
r
it works now. it just a routes issue on my code. the subdomain in routes.php must be the first and inside on it will be the prefix and etc. like this:
Route::group(['domain' => '{account_alias}.'.env('APP_URL_NAME')], function () {
// L3
Route::group([ 'prefix' => 'app', 'middleware' => 'auth', 'middleware' => 'auth.manager' ], function() {
Route::get('dashboard', 'DashController@index');