kenken999's picture
update
b97a3a5
raw
history blame
160 Bytes
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserProfile extends Model
{
protected $fillable = [
'user_id',
];
}