tabuna / breadcrumbs

Laravel Breadcrumbs - An easy way to add breadcrumbs to your @Laravel app.
https://github.com/tabuna/breadcrumbs
MIT License
340 stars 20 forks source link

502 Bad Gateway #27

Closed abdosaeedelhassan closed 2 years ago

abdosaeedelhassan commented 3 years ago

Hi when i used

i received 502 Bad Gateway, and no error registered in log files, how can i resolve this or how can i detect the error

thank you

tabuna commented 3 years ago

Try using breadcrumbs off-route and at the service provider:

Breadcrumbs::for('photo.index', fn (Trail $trail) =>
    $trail->parent('home')->push('Photos', route('photo.index'))
);
abdosaeedelhassan commented 2 years ago

@tabuna i upgrade to last version and the problem solved, thank you