Laravel 3.x Assets: how to include an external url -
i'm trying include google cdn jquery link laravel assets container link being concatenated site address, this:
<script src="http://mybeautifulsite.com/<script src=" http:="" ajax.googleapis.com="" ajax="" libs="" jquery="" 1.8.3="" jquery.min.js"=""></script>
is there way include external links assets container?
edit
here's code i'm using include asset:
asset::add('jquery', '<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>');
should be:
asset::add('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js');
whilst the documentation not explicitly talk absolute urls, code written in such way handle them.