I have an image that I'd like to set as a background in a Laravel 3 project - background-image: url("public/img/find-a-table.png");
But it's saying "cannot resolve find-a-table.png" in phpStorm even though I definitely have the image file added to that directory.
Do I need to change something to have it find my image in that directory? In any other typical web app, this would be quite trivial to do so I don't know if I'm missing something.
this site shows I don't need the quotes around the path? I've tried that too but that doesn't fix it. They use:
background: url(images/bg.jpg) no-repeat center center fixed; without quotes
