*/ protected $fillable = [ 'who', 'towho', 'secret', 'ip', 'email', 'web', 'addr', 'post_time', 'text_title', 'text_body', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'post_time' => 'datetime', 'secret' => 'boolean', ]; } }