<?php namespace App\Models\Auth; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use App\Models\User; class Biodata extends Model { use HasFactory; protected $table = 'biodata'; protected $primaryKey = 'id'; public $incrementing = false; protected $keyType = 'string'; protected $fillable = [ 'id', 'user_id', 'noidentitas', 'name', 'fakultas', 'prodi', 'telephone', 'phone', 'email', 'web', 'userid_created', 'userid_updated', 'created_at', 'updated_at', 'id_reg_pd', ]; }