+ @if($currentStep === 'connection')
+
+ Checking server connection...
+ @if($steps['connection']['completed'])
+ Connected!
+ @endif
+
@endif
-
- @isset($error)
-
{!! $error !!}
- @endisset
+
+ @if($currentStep === 'os' || $steps['os']['completed'])
+
+ Operating System:
+ @if($supported_os_type)
+ {{ $supported_os_type }}
+ @endif
+
+ @endif
+
+ @if($currentStep === 'docker' || $steps['docker']['completed'])
+
+ Docker Engine:
+ @if($docker_installed)
+ Installed
+ @elseif($currentStep === 'docker')
+ Checking installation...
+ @endif
+
+ @endif
+
+ @if($currentStep === 'compose' || $steps['compose']['completed'])
+
+ Docker Compose:
+ @if($docker_compose_installed)
+ Installed
+ @elseif($currentStep === 'compose')
+ Checking installation...
+ @endif
+
+ @endif
+
+ @if($currentStep === 'dependencies' || $steps['dependencies']['completed'])
+
+ Dependencies:
+ @if($steps['dependencies']['completed'])
+ Installed
+ @elseif($currentStep === 'dependencies')
+ Installing...
+ @endif
+
+ @endif
+
+ @if($currentStep === 'proxy' || $steps['proxy']['completed'])
+
+ Proxy:
+ @if($proxy_started)
+ Started
+ @elseif($currentStep === 'proxy')
+ Starting...
+ @endif
+
+ @endif
+