destroy session in 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 session flash 2020

use Illuminate\Support\Facades\Session;

Session::flash('message','This is a message!'); 

then in your view::

@if(Session::has('message'))

<p class="alert
{{ Session::get('alert-class', 'alert-info') }}">{{Session::get('message') }}</p>

@endif

Example 3: how to clear session in laravel

# ref: https://laravel.io/forum/02-06-2014-session-destroy

Session::forget('yourKeyGoesHere') // Removes a specific variable

Example 4: session in laravel

session()->regenerate();

Tags:

Php Example