laravel route model binding injection code example
Example 1: explicit route model binding in laravel
// In RouteServiceProvider
public function boot()
{
//don't forget import model at the top
Route::model('unique_key', Blog::class);
Route::bind('unique_key', function ($value) {
return Blog::findOrFail($value);
//return Blog::where('something', $value)->firstOrFail();
});
//default laravel codes
}
Example 2: laravel route model binding
Route::bind('user', function($value)
{
return User::where('name', $value)->first();
});
// We can And Do also this in model..
/**
* Retrieve the model for a bound value.
*
* @param mixed $value
* @param string|null $field
* @return \Illuminate\Database\Eloquent\Model|null
*/
public function resolveRouteBinding($value, $field = null)
{
return $this->where('name', $value)->firstOrFail();
}