Level 51
Can you share more information, like relevant content of your view and the controller action that renders the view
1 like
Summer Sale! All accounts are 50% off this week.
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.