Alexandr Chernyaev

Results 29 issues of 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. ![Снимок экрана 2019-07-30 в 21 42 09](https://user-images.githubusercontent.com/5102591/62156107-05871480-b313-11e9-9bc7-4fcdcde3714c.png) ![Снимок экрана 2019-07-30 в 21 43 46](https://user-images.githubusercontent.com/5102591/62156187-26e80080-b313-11e9-84e5-b4120b060a81.png) example code: ```javascript...

bug

**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: ![image](https://user-images.githubusercontent.com/5102591/115978497-727f1b00-a588-11eb-84e9-5e7441a116e5.png) In this regard, I propose to add a new method to the resource class...