destroy all session variables laravel code example
Example 1: laravel destroy session
# ref: https://laravel.io/forum/02-06-2014-session-destroy
Session::forget('yourKeyGoesHere') // Removes a specific variable
Example 2: laravel use session values in view
<!--This is placed in the view section --> {{ session('key_name') }}