Laravel 5.2 Auth no funciona

Como ustedes saben, Laravel 5.2 fue lanzado hace unos días. Estoy probando esta nueva versión. Hice un nuevo proyecto usando el siguiente comando en la CLI:

laravel new testapp

Segúndocumentación de inicio rápido de autenticación, Seguí el siguiente comando para andamiar rutas y vistas de autenticación:

php artisan make:auth

Funcionó bien. El registro funciona bien. Pero estoy enfrentando un problema al iniciar sesión. Después de iniciar sesión probé lo siguiente en el archivo route.php:

   Route::get('/', function () {
    dd( Auth::user());
    return view('welcome');
});

Auth::user() está volviendonull y tambiénAuth::check() yAuth::guest() No están funcionando adecuadamente. He intentado lo mismo una y otra vez dos o tres veces haciendo nuevos proyectos, pero no pude obtener los resultados correctos.

A continuación se muestra el completoroute.php

    <?php

/*
|--------------------------------------------------------------------------
| Routes File
|--------------------------------------------------------------------------
|
| Here is where you will register all of the routes in an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/

Route::get('/', function () {
    dd( Auth::());
    return view('welcome');
});

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| This route group applies the "web" middleware group to every route
| it contains. The "web" middleware group is defined in your HTTP
| kernel and includes session state, CSRF protection, and more.
|
*/

Route::group(['middleware' => ['web']], function () {
    //
});

Route::group(['middleware' => 'web'], function () {
    Route::auth();

    Route::get('/home', 'HomeController@index');
});

¿Alguien puede ayudarme? o ¿Alguien enfrenta el mismo problema? ¿Cómo puedo arreglarlo?

Respuestas a la pregunta(1)

Su respuesta a la pregunta