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

16 行
239B

  1. <?php
  2. namespace App\Models;
  3. use Framework\Database\Model;
  4. class Profile extends Model
  5. {
  6. protected string $table = 'profiles';
  7. public function user(): mixed
  8. {
  9. return $this->belongsTo(User::class, 'user_id');
  10. }
  11. }

Powered by TurnKey Linux.