Метод |
Описание |
|
__call ( string $method, array $parameters ) : Illuminate\Contracts\View\View | mixed |
Dynamically handle calls to the class. |
|
__construct ( Illuminate\Contracts\Routing\UrlGenerator $url = null, Illuminate\Contracts\View\Factory $view ) |
Create a new HTML builder instance. |
|
attributes ( array $attributes ) : string |
Build an HTML attribute string from an array. |
|
componentCall ( ) |
|
|
decode ( string $value ) : string |
Convert entities to HTML characters. |
|
dl ( array $list, array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a description list of items. |
|
email ( string $email ) : string |
Obfuscate an e-mail address to prevent spam-bots from sniffing it. |
|
entities ( string $value ) : string |
Convert an HTML string to entities. |
|
favicon ( string $url, array $attributes = [], boolean $secure = null ) : Illuminate\Support\HtmlString |
Generate a link to a Favicon file. |
|
image ( string $url, string $alt = null, array $attributes = [], boolean $secure = null ) : Illuminate\Support\HtmlString |
Generate an HTML image element. |
|
link ( string $url, string $title = null, array $attributes = [], boolean $secure = null, boolean $escape = true ) : Illuminate\Support\HtmlString |
Generate a HTML link. |
|
linkAction ( string $action, string $title = null, array $parameters = [], array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a HTML link to a controller action. |
|
linkAsset ( string $url, string $title = null, array $attributes = [], boolean $secure = null ) : Illuminate\Support\HtmlString |
Generate a HTML link to an asset. |
|
linkRoute ( string $name, string $title = null, array $parameters = [], array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a HTML link to a named route. |
|
linkSecureAsset ( string $url, string $title = null, array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a HTTPS HTML link to an asset. |
|
macroCall ( ) |
|
|
mailto ( string $email, string $title = null, array $attributes = [], boolean $escape = true ) : Illuminate\Support\HtmlString |
Generate a HTML link to an email address. |
|
meta ( string $name, string $content, array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a meta tag. |
|
nbsp ( integer $num = 1 ) : string |
Generates non-breaking space entities based on number supplied. |
|
obfuscate ( string $value ) : string |
Obfuscate a string to prevent spam-bots from sniffing it. |
|
ol ( array $list, array $attributes = [] ) : Illuminate\Support\HtmlString | string |
Generate an ordered list of items. |
|
script ( string $url, array $attributes = [], boolean $secure = null ) : Illuminate\Support\HtmlString |
Generate a link to a JavaScript file. |
|
secureLink ( string $url, string $title = null, array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate a HTTPS HTML link. |
|
style ( string $url, array $attributes = [], boolean $secure = null ) : Illuminate\Support\HtmlString |
Generate a link to a CSS file. |
|
tag ( string $tag, mixed $content, array $attributes = [] ) : Illuminate\Support\HtmlString |
Generate an html tag. |
|
ul ( array $list, array $attributes = [] ) : Illuminate\Support\HtmlString | string |
Generate an un-ordered list of items. |
|