Question: Can't set cookies in Laravel
I thought cookies were simple, but I'm struggling with them for quite a while.
I'm trying to create cookies with the information and php error it does not work. It looks like the creation is not successful.
use Illuminate\Support\Facades\Cookie; Cookie::queue( Cookie::make('test', 'my test token', 5563));
I'm running laravel
application on localhost as http://localhost:8000/
or http://127.0.0.1:8000/
I read about issues with chrome and tried FF
and Edge
still do not understand where is the problem. Do I need to change to URL to localhost.com
?
9codings