<?php namespace App\Models\Feature; use App\Models\User; trait UserId { public function user() { return $this->belongsTo(User::class); } }