I followed the documentation on Laravel 5.3's HTTP Session https://laravel.com/docs/5.3/session
Its not that to me in using this feature.
I created the sessions table via the laravel's documentation but Im not getting any stored sessions on the Application's - Seesion Storage.
Can someone shed some light on me? Thanks!
AdminController:
public function show(Request $request, $id)
{
$request->session()->put('key', 'value');
$value = $request->session()->get('key');
}