If you use pull to get session it deletes the record after reading
$value = Session::pull('key');
Instead of this, use
$value = Session::get('key');
And if this is not the case, please put your codes here. So we can check them.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community