Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

salomon022's avatar

'session' not found

Class 'session' not found (View: C:\xampp\htdocs\blogtow\resources\views\admin\menu.blade.php)

0 likes
5 replies
D9705996's avatar

Can you share more information, like relevant content of your view and the controller action that renders the view

1 like
salomon022's avatar

Session global variable not showing in my view page

{{session::get('user_name')}}

Snapey's avatar
Snapey
Best Answer
Level 122
{{session::get('user_name')}}

is not valid, session is not a class name (it would be Session)

use the helper instead

{{ session('user_name') }}
1 like

Please or to participate in this conversation.