As a beginner in Laravel, I am attempting to add a CSS file to my view. The specific location of the css file is
resources\assets\css\style.css
The command I am using to include it is:
<link rel="stylesheet" href="{{ URL::asset('assets/css/style.css') }}">
I seem to be encountering an issue and cannot figure out what mistake I am making. Any assistance would be greatly appreciated.