Borja Jiménez
Borja Jiménez
@danharrin this seems to be already fixed, at least in the latest version [[v3.2.136](https://github.com/filamentphp/filament/releases/tag/v3.2.136)] https://youtu.be/SNWtRdyG2Sg Additionally, the given repository does not exist. regards
Yes, @martin-ro, I can reproduce this now. I'll give it a shot. Thanks!
This PR https://github.com/filamentphp/filament/issues/12824 is maybe related with this issue.
I agree with @ahmadrivaldi-arv in https://github.com/filamentphp/filament/issues/14757#issuecomment-2470318226 @zsoltjanes, if you use `multiple()`, you need to cast your attribute to `json` or `array` in your model. ```php protected $casts = [ 'options'...
**Avoid using this:** ```php NavigationItem::make() ->label('Test') ->url('test/123') ``` **Instead, use:** ```php NavigationItem::make() ->label('Test') ->url(route('your_route_name')) ``` By using the `route()` helper, the system will correctly identify it as an application route...