Files
CFDivePlatform/app/Models/CoachProfile.php
T
2025-05-11 03:45:17 +08:00

32 lines
503 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CoachProfile extends Model
{
/**
* 可以批量分配的屬性
*
* @var array<int, string>
*/
protected $fillable = [
'user_id',
'bio',
'expertise',
'certification',
'experience',
'rating',
'availability'
];
/**
* 與用戶的關聯
*/
public function user()
{
return $this->belongsTo(User::class);
}
}