laravel artisan clear cache
//Updated Dec 2020
//laravel artisan clear cache
php artisan view:clear
php artisan cache:clear
php artisan route:clear
php artisan config:clear
laravel artisan clear cache
//Updated Dec 2020
//laravel artisan clear cache
php artisan view:clear
php artisan cache:clear
php artisan route:clear
php artisan config:clear
laravel destroy session
# ref: https://laravel.io/forum/02-06-2014-session-destroy
Session::forget('yourKeyGoesHere') // Removes a specific variable
store multiple session in laravel
//store multipal data
Session::put('user', ['first_name' => $request->get('first_name'), 'user_role' => Auth::user()->user_role, 'city' => Auth::user()->city]);
//in blade template
<p>
{{Session::get('user')['city']}}
</p>
@foreach (Session::get('user') as $user)
{{$user}}
@endforeach
//condtion check
@if(Session::has('user'))
@foreach (Session::get('user') as $user)
{{ $user }}
@endforeach
@endif
// condition check using ternary operator
{{ (Session::has('user')) ? 45 : 55}}
//delete session
Session::forget('customer');
//@sujay
how to clear session in laravel
# ref: https://laravel.io/forum/02-06-2014-session-destroy
Session::forget('yourKeyGoesHere') // Removes a specific variable
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us