There is a helper for loading assets in Laravel 4 projects to create an asset url
<link rel="stylesheet" href="{{ asset('css/styles.css') }}" />
But this assistant could be called, using also a facade
<link rel="stylesheet" href="{{ URL::asset('css/styles.css') }}" />
which give the same result.
So my question is, is this the real difference here, one way is better in terms of performance than the other, or just a style of preference
source share