I've working on project where lots information stored in Cookies. We've using PHP Laravel 5.2 framework and jQuery library 1.9. Every thing working fine but when trying to read a cookies with jQuery that created with Laravel PHP code its return nothing but when checked it in browser cookies and read with PHP Laravel its working fine
Laravel Code:
Cookie::queue('COOKIE_NAME', $value, $minutes); //Create a cookie
jQuery Code:
var cookieValue = $.cookie("COOKIE_NAME"); //Return nothing