We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
closure://function (\Tabuna\Breadcrumbs\Trail $trail, \App\Models\Backend\Chamber $chamber) { $trail->parent('admin.chambers.index') ->push(__('Editing :chamber', ['chamber' => $chamber->id]), route('admin.chambers.edit', $chamber)); }:2
The text was updated successfully, but these errors were encountered:
Have u imported use Tabuna\Breadcrumbs\Trail; ?
use Tabuna\Breadcrumbs\Trail;
Sorry, something went wrong.
I had this problem as well. For the route URI you need to set the parameter to match the second argument of the breadcrumbs function:
Route::get('admin/chambers/{chamber}', ...)
instead of
Route::get('admin/chambers/{id}', ....)
This will inject the value (in this case, the ID of the record to load) into the Chamber class and instantiate a new model (route model binding).
The full error is
Argument 2 passed to {closure}() must be an instance of App\Models\Chamber, string given
No branches or pull requests
closure://function (\Tabuna\Breadcrumbs\Trail $trail, \App\Models\Backend\Chamber $chamber) { $trail->parent('admin.chambers.index') ->push(__('Editing :chamber', ['chamber' => $chamber->id]), route('admin.chambers.edit', $chamber)); }:2
The text was updated successfully, but these errors were encountered: