I am new in laravel and i want to include css and js from public folder using this
<link href={{ URL::asset('css/a.css') }} rel="stylesheet">
But it is not working for me . public folder contains the assets folder in which i have css and js files with is code
h1{
color:darkgreen;
}
I want just css and js files include in blade files . So i have created one folder inside public folder and include using this code
<link href={{ URL::asset('css/a.css') }} rel="stylesheet">
But i am not able see effect of this css and js in blade file so please help me for include css and js file in blade file
