|
4 | 4 |
|
5 | 5 | use Illuminate\Support\Facades\Facade;
|
6 | 6 |
|
| 7 | +/** |
| 8 | + * Class BsForm |
| 9 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\TextComponent text($name = null, $value = null) |
| 10 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\EmailComponent email($name = null, $value = null) |
| 11 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\PasswordComponent password($name = null, $value = null) |
| 12 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\TextareaComponent textarea($name = null, $value = null) |
| 13 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\CheckboxComponent checkbox($name = null, $value = null, $checked = false) |
| 14 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\RadioComponent radio($name = null, $value = null, $checked = false) |
| 15 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\DateComponent date($name = null, $value = null) |
| 16 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\FileComponent file($name = null) |
| 17 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\NumberComponent number($name = null, $value = null) |
| 18 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\SelectComponent select($name = null, $options = [], $value = null) |
| 19 | + * @method static \Elnooronline\LaravelBootstrapForms\Components\SubmitComponent submit($label = null, $name = null) |
| 20 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm open($url, $attributes = []) |
| 21 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm resource($resource) |
| 22 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm locale($locale = null) |
| 23 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm style($style = null) |
| 24 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm clearStyle() |
| 25 | + * @method static \Elnooronline\LaravelBootstrapForms\BsForm inlineValidation($bool = true) |
| 26 | + * @method static \Illuminate\Support\HtmlString close() |
| 27 | + * |
| 28 | + * @package Elnooronline\LaravelBootstrapForms\Facades |
| 29 | + */ |
7 | 30 | class BsForm extends Facade
|
8 | 31 | {
|
9 | 32 | /**
|
|
0 commit comments