Alexandr Chernyaev
Alexandr Chernyaev
This sentence modifies the return value for generator methods. **Before** ```php Breadcrumbs::for('home', function ($trail) { $trail->parent('home'); $trail->push('About'); }); ``` **After** ```php Breadcrumbs::for('home', function ($trail) { $trail->parent('home')->push('About'); }); ``` This small...
**Is your feature request related to a problem? Please describe.** I often have to show values in a specific format. For example, some number is like a currency. Or a...
**Is your feature request related to a problem? Please describe.** It seems strange to me to specify HTTP filters and Eloquent filter separately, for example: ```php public function query(): iterable...
**Is your feature request related to a problem? Please describe.** jQuery has a bad reputation at the moment. While we don't directly use it anywhere right now, we do have...
**Is your feature request related to a problem? Please describe.** Right now, to display an `HTML` notification with bold text, for example, you need to use `Alert` with your own...
**Is your feature request related to a problem? Please describe.** At the moment, many settings are defined in the configuration file located in `config/platform.php,` but the part expects you to...
## Proposed Changes - - -
If I insert a raw line of long-sized code, then editing becomes impossible.   example code: ```javascript...
**Is your feature request related to a problem? Please describe.** I often use the `` tag to indicate a date or time. For example ```html The concert starts at 20:00....
It would be great to add a display of nested resources when browsing, for example:  In this regard, I propose to add a new method to the resource class...