Laravel 5.2: retrieving a cookie via blade returns null also if cookie is set
问题 I set a cookie my_cookie via Javascript function createCookie(name, value, days) { var expires; if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); expires = "; expires="+date.toUTCString(); } else { expires = ""; } document.cookie = name+"="+value+expires+"; path=/"; } .... createCookie('my_cookie', 1, 365); .... Via Chrome Cookie Inspector I see that the cookie is created with value 1. Via Laravel Blade I tried: @if (Cookie::get('my_cookie') !== null) // or