public_id}/edit"; } /** * @return mixed */ public function client() { return $this->belongsTo('App\Models\Client')->withTrashed(); } } Project::creating(function ($project) { $project->setNullValues(); }); Project::updating(function ($project) { $project->setNullValues(); });