$input * * @throws ValidationException */ public function create(Server $server, array $input): void { $server->logs()->create([ 'is_remote' => true, 'name' => $input['path'], 'type' => 'remote', 'disk' => 'ssh', ]); } /** * @return array */ public static function rules(): array { return [ 'path' => 'required', ]; } }