Alexandr Chernyaev

Results 168 comments of Alexandr Chernyaev

Hi @lbssousa! I added expect arguments to the `Breadcrumbs::current()` method. Now you can pass there your own variables from the controller: ```php Route::get('breadcrumbs', function () { return Breadcrumbs::current(['value 1', 'value...

Hi @dwightwatson , are you not considering adding breadcrumbs to your routes, for example, [davejamesmiller/laravel-breadcrumbs#209](https://github.com/davejamesmiller/laravel-breadcrumbs/pull/209)?

Please tell me, these changes will affect ```php Breadcrumbs::for('home', function (Generator $trail) { $trail->then('Home', route('home')); }); ``` Right now I have ide tips for the passed object. Are they saved...

The IDE will definitely give the wrong hints if it is used in any class: ```php class AppServiceProvider extends ServiceProvider { public function boot() { Breadcrumbs::for('home', fn() => $this->then('home', route('home')));...

> I'm not overly familiar with IDEs - Sublime Text user here. I wonder if there's a magic comment I can put when calling the closure that would indicate to...

> However I might actually want the Post model that the controller loads. (I have use-cases in my app where I specifically don't want to use route model binding, but...

Hi @cednore. As far as I know artisan command: ```php php artisan app:name Cednore\Cedi ``` No longer mentioned in Laravel documentation (Above version 5), you can see a discussion of...

Guys, I see it, thank you. But I think we need to solve it differently so that the state of the fields is always as it should be. Without writing...

Hi @TomNealBorneman, could you add some tests to test this case?

Hi @GuavaCZ, what do you think if we just do independent tabs. Then we don't need the second argument and the `title` method?