*/ protected $fillable = [ 'who', 'towho', 'callmess', 'calltime', 'read', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'calltime' => 'datetime', 'read' => 'boolean', ]; } }