Hi everyone
So far with Laravel 9 no problems. Now with Laravel 10: problem. My local program works fine. Once deployed on Siteground, the problem comes ....
$attivitaController = new AttivitaController(); /* contenute nel controller Attivita */ $attivitaController->index(); /* contenuta nel controller Attivita */ dd(session('array_attivita'));
here the session variable is set
elsewhere in the program, the session variable arrives empty
I think you have a wrong understanding of how to call the index or a method of a controller. Please look at the documentation. https://laravel.com/docs/9.x/controllers#basic-controllers
Thanks for the reply cemarta7 but, I believe that once a session variable is loaded and its contents checked, the contents of the session variable must be visible everywhere in the program. I err?
This does not set the value dd(session('array_attivita'))
You need to do
session(['key'=>'value'])
Take a look at the session storing methods in the documentation https://laravel.com/docs/9.x/session#storing-data
I realize I documented my question terrible. I'll do better next time. Thank you for your patience and replies. Good day. See you next time.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community