├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Attributes.php ├── BaseElement.php ├── Elements ├── A.php ├── Attributes │ ├── Autocomplete.php │ ├── Autofocus.php │ ├── Disabled.php │ ├── MinMaxLength.php │ ├── Name.php │ ├── Placeholder.php │ ├── ReadonlyTrait.php │ ├── Required.php │ ├── Target.php │ ├── Type.php │ └── Value.php ├── Button.php ├── Div.php ├── Element.php ├── Fieldset.php ├── File.php ├── Form.php ├── I.php ├── Img.php ├── Input.php ├── Label.php ├── Legend.php ├── Optgroup.php ├── Option.php ├── P.php ├── Select.php ├── Span.php └── Textarea.php ├── Exceptions ├── InvalidChild.php ├── InvalidHtml.php └── MissingTag.php ├── Facades └── Html.php ├── Helpers └── Arr.php ├── Html.php ├── HtmlElement.php ├── HtmlServiceProvider.php ├── Selectable.php └── helpers.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/composer.json -------------------------------------------------------------------------------- /src/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Attributes.php -------------------------------------------------------------------------------- /src/BaseElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/BaseElement.php -------------------------------------------------------------------------------- /src/Elements/A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/A.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Autocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Autocomplete.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Autofocus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Autofocus.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Disabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Disabled.php -------------------------------------------------------------------------------- /src/Elements/Attributes/MinMaxLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/MinMaxLength.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Name.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Placeholder.php -------------------------------------------------------------------------------- /src/Elements/Attributes/ReadonlyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/ReadonlyTrait.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Required.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Target.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Type.php -------------------------------------------------------------------------------- /src/Elements/Attributes/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Attributes/Value.php -------------------------------------------------------------------------------- /src/Elements/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Button.php -------------------------------------------------------------------------------- /src/Elements/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Div.php -------------------------------------------------------------------------------- /src/Elements/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Element.php -------------------------------------------------------------------------------- /src/Elements/Fieldset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Fieldset.php -------------------------------------------------------------------------------- /src/Elements/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/File.php -------------------------------------------------------------------------------- /src/Elements/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Form.php -------------------------------------------------------------------------------- /src/Elements/I.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/I.php -------------------------------------------------------------------------------- /src/Elements/Img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Img.php -------------------------------------------------------------------------------- /src/Elements/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Input.php -------------------------------------------------------------------------------- /src/Elements/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Label.php -------------------------------------------------------------------------------- /src/Elements/Legend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Legend.php -------------------------------------------------------------------------------- /src/Elements/Optgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Optgroup.php -------------------------------------------------------------------------------- /src/Elements/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Option.php -------------------------------------------------------------------------------- /src/Elements/P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/P.php -------------------------------------------------------------------------------- /src/Elements/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Select.php -------------------------------------------------------------------------------- /src/Elements/Span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Span.php -------------------------------------------------------------------------------- /src/Elements/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Elements/Textarea.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidChild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Exceptions/InvalidChild.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Exceptions/InvalidHtml.php -------------------------------------------------------------------------------- /src/Exceptions/MissingTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Exceptions/MissingTag.php -------------------------------------------------------------------------------- /src/Facades/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Facades/Html.php -------------------------------------------------------------------------------- /src/Helpers/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Helpers/Arr.php -------------------------------------------------------------------------------- /src/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Html.php -------------------------------------------------------------------------------- /src/HtmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/HtmlElement.php -------------------------------------------------------------------------------- /src/HtmlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/HtmlServiceProvider.php -------------------------------------------------------------------------------- /src/Selectable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/Selectable.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-html/HEAD/src/helpers.php --------------------------------------------------------------------------------