*/ use HasFactory; public $incrementing = false; protected $keyType = 'string'; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'id', 'first_name', 'last_name', 'email', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'id' => 'string', ]; } }