DEV Community

Cover image for Laravel 9 - Override the route binding resolver for each of your models
Sandro Jhuliano Cagara
Sandro Jhuliano Cagara

Posted on

2

Laravel 9 - Override the route binding resolver for each of your models

You can override the route binding resolver for each of your models.

In this example, I have no control over the @ sign in the URL, so using the resolveRouteBinding method, I'm able to remove the @ sign and resolve the model.

// Route
Route::get('{examples:slug}', ExampleController::class);

// Request
https://nodejs.pub/@unlock/hello-world

// Example Model
public function resolveRouteBinding($value, $field = NULL)
{
    $value = str_replace('@', '', $value);
    return parent::resolveRouteBinding($value, $field);
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay