Level 51
Can you share more information, like relevant content of your view and the controller action that renders the view
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Class 'session' not found (View: C:\xampp\htdocs\blogtow\resources\views\admin\menu.blade.php)
{{session::get('user_name')}}
is not valid, session is not a class name (it would be Session)
use the helper instead
{{ session('user_name') }}
Please or to participate in this conversation.