I have a javascript file in /public/js/ called myjavascript.js .
I want to include it in my site.
So I did this:
@extends('something')
@section('scripts')
<script src="/js/myjavascript.js"></script>
@stop
@section('content')
...
This work in other project but not in this new one. What am I doing wrong?
src="<?php echo asset('/js/myjavascript.js'); ?>"