Alexandr Chernyaev
Alexandr Chernyaev
Hi, I can design a website to refresh it well. Are you interested in this?
Thank you for the work you’ve done. 🙏 I would like to discuss an idea: currently, this package is suitable only for Laravel projects, but not for their packages. I...
**Describe the bug** When creating a markdown text editor using the `SimpleMDE::make('editor')->required()` method, the `required` attribute is automatically added to the underlying CodeMirror instance. This causes side effects, such as...
Adds an `escape` parameter to the `` component. Setting `:escape="false"` disables HTML escaping for breadcrumb titles. Example: ```blade ```
Before: ```blade @component($typeForm, get_defined_vars()) {{-- Code --}} @endcomponent ``` After: ```blade {{-- Code --}} ```
### Description: During a discussion, we identified a need to occasionally **override automatic translation** behavior for field attributes. For example: ```php Input::make()->title('User') ``` In this case, the `title` will be...
On the default screen, when a form fails to submit to the server, the current message is: > "Please check the entered data, it may be necessary to specify in...
**Problem:** Currently, to set a label above an input field, the `title` method is used: ```php Input::make('name') ->title('Your name') ``` However, using `title` is not entirely correct, as in HTML...