The asset()
or URL::asset()
will point to http://my-url/public/
in default.
Is there any way to change the url of asset()
to http://my-url/public/assets/
?
I have many asset files which I should use in my blade templates and I don't want to write assets
any time.
I mean use asset('js/script.js')
instead of asset('assets/js/scripts.js')
in my blade templates.