Im looking for best practice methods in Laravel. I understand that when I have mixing set up for JS in laravel it does wonders. But for individual pages what method is best practice? Any insight would be great!
For example as of right now my scripts look like this
<script src="/x/remote/js/js_new/typed.min.js"></script>
but would it be more conducive to the Laravel framework by using the asset method like this instead?
<script src="{{ asset('/x/remote/js/js_new/typed.min.js') }}"></script>