I want to set cookies in Laravel 5 independently
i.e., Don't want to use
return response($content)->withCookie(cookie('name', 'value'));
I just want to set cookie in some page and retrieve in some other page
Creation can be like this
$cookie = Cookie::make('name', 'value', 60);
But how can i retrieve those cookies in some controller itself ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…