LaravelBook\Laravel4Powerpack\HTML::script PHP Method

script() public method

Generate a link to a JS file
public script ( string $url, array $attributes = [] ) : string
$url string
$attributes array
return string
    public function script($url, $attributes = array())
    {
        $url = $this->url->to($url);
        return '<script src="' . $url . '"' . $this->attributes($attributes) . '></script>' . PHP_EOL;
    }