format('Y-m-d H:i:s'); } public function user(){ return $this->hasOne(App\Models\User::class,'id','user_id')->withTrashed(); } public function course(): \Illuminate\Database\Eloquent\Relations\HasOne { return $this->hasOne(Course::class,'id','course_id','deleted_at')->withTrashed(); } }