I have created an Asset helper of my own.First I defined the asset types and path in app/config/assets.php:returnarray(/* |-------------------------------------------------------------------------- | Assets paths |-------------------------------------------------------------------------- | | Location of all application assets, relative to the public folder, | may be used together with absolute paths or with URLs. | */'images'=>'/storage/images','css'=>'/assets/css','img'=>'/assets/img','js'=>'/assets/js');Then the actual Asset class:classAsset{privatestaticfunctiongetUrl($type, $file) {returnURL::to(Config::get('assets.'. $type).'/'. $file); }publicstaticfunctioncss($file) {returnself::getUrl('css', $file); }publicstaticfunctionimg($file) {returnself::getUrl('img', $file); }publicstaticfunctionjs($file) {returnself::getUrl('js', $file); }}So in my view I can do this to show an image:{{ HTML::image(Asset::img('logo.png'),"My logo")) }}Or like this to implement a Java script:{{ HTML::script(Asset::js('my_script.js')) }}