+
+ {{-- --}}
+
-
-
@endauth
diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php
index ccaef3590..26071c61a 100644
--- a/resources/views/dashboard.blade.php
+++ b/resources/views/dashboard.blade.php
@@ -1,32 +1,56 @@
- Projects
- @forelse ($projects as $project)
- {{ data_get($project, 'name') }}
- @empty
- No projects found.
- @endforelse
- Servers
- @forelse ($servers as $server)
- {{ data_get($server, 'name') }}
- @empty
- No servers found.
- @endforelse
- Destinations
- @forelse ($destinations as $destination)
- {{ data_get($destination, 'name') }}
- @empty
- No destinations found.
- @endforelse
- Private Keys
- @forelse ($private_keys as $private_key)
- {{ data_get($private_key, 'name') }}
- @empty
- No servers found.
- @endforelse
- GitHub Apps
- @forelse ($github_apps as $github_app)
- {{ data_get($github_app, 'name') }}
- @empty
- No servers found.
- @endforelse
+ @if ($servers->count() === 0)
+
+
Without a server, you won't be able to do much.
+
Let's create
your
+ first one!
+
+ @else
+ Projects
+
+ Servers
+
+ Destinations
+
+ Private Keys
+
+ GitHub Apps
+
+ @endif
+
diff --git a/resources/views/livewire/activity-monitor.blade.php b/resources/views/livewire/activity-monitor.blade.php
index 2a0650d86..df632f398 100644
--- a/resources/views/livewire/activity-monitor.blade.php
+++ b/resources/views/livewire/activity-monitor.blade.php
@@ -1,9 +1,10 @@
- @isset($this->activity)
-
Status: {{ $this->activity?->properties->get('status') }}
-
{{ \App\Actions\CoolifyTask\RunRemoteProcess::decodeOutput($this->activity) }}
- @else
-
Output will be here...
- @endisset
+
+ @if ($this->activity)
+
{{ \App\Actions\CoolifyTask\RunRemoteProcess::decodeOutput($this->activity) }}
+ @else
+
Output will be here...
+ @endif
+
diff --git a/resources/views/livewire/private-key/create.blade.php b/resources/views/livewire/private-key/create.blade.php
index 927ca7ef5..204754062 100644
--- a/resources/views/livewire/private-key/create.blade.php
+++ b/resources/views/livewire/private-key/create.blade.php
@@ -1,10 +1,10 @@
-
diff --git a/resources/views/livewire/run-command.blade.php b/resources/views/livewire/run-command.blade.php
index beabd82c3..611477527 100755
--- a/resources/views/livewire/run-command.blade.php
+++ b/resources/views/livewire/run-command.blade.php
@@ -1,9 +1,13 @@