選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
162B

  1. <?php
  2. namespace App\Models\Feature;
  3. use App\Models\User;
  4. trait UserId
  5. {
  6. public function user()
  7. {
  8. return $this->belongsTo(User::class);
  9. }
  10. }