2022-10-13 07:03:31 +02:00
|
|
|
@section("title", "Public viewable servers")
|
2022-03-05 16:29:58 +01:00
|
|
|
<x-app-layout>
|
|
|
|
<x-slot name="header">
|
|
|
|
{{ __('Servers') }}
|
|
|
|
</x-slot>
|
|
|
|
<div class="container">
|
|
|
|
<x-card class="shadow mt-3">
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-bordered">
|
|
|
|
<thead class="table-light">
|
|
|
|
<tr class="bg-gray-100 bg-">
|
|
|
|
@if(Session::get('show_server_value_hostname') === 1)
|
|
|
|
<th class="nowrap">Name</th>
|
|
|
|
@endif
|
|
|
|
<th class="text-center"><i class="fas fa-box" title="Virt"></i></th>
|
|
|
|
<th class="text-center">OS</th>
|
|
|
|
<th class="text-center"><i class="fas fa-microchip" title="CPU"></i></th>
|
2022-06-23 16:41:28 +02:00
|
|
|
<th class="text-center">Mhz</th>
|
2022-03-05 16:29:58 +01:00
|
|
|
<th class="text-center"><i class="fas fa-memory" title="ram"></i></th>
|
|
|
|
<th class="text-center"><i class="fas fa-compact-disc" title="disk"></i></th>
|
|
|
|
<th class="text-nowrap">Location</th>
|
|
|
|
<th class="text-nowrap">Provider</th>
|
|
|
|
<th class="text-nowrap">Price</th>
|
|
|
|
<th class="text-nowrap">Had since</th>
|
2023-09-21 14:24:02 +02:00
|
|
|
<th class="text-nowrap">GB6 S</th>
|
|
|
|
<th class="text-nowrap">GB6 M</th>
|
2022-03-05 16:29:58 +01:00
|
|
|
<th class="text-nowrap">4k</th>
|
|
|
|
<th class="text-nowrap">64k</th>
|
|
|
|
<th class="text-nowrap">512k</th>
|
|
|
|
<th class="text-nowrap">1m</th>
|
|
|
|
@if(Session::get('show_server_value_ip') === 1)
|
|
|
|
<th class="text-nowrap">IPv4</th>
|
|
|
|
<th class="text-nowrap">IPv6</th>
|
|
|
|
@endif
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@if(!empty($servers[0]))
|
|
|
|
@foreach($servers as $s)
|
|
|
|
<tr>
|
|
|
|
@if(Session::get('show_server_value_hostname') === 1)
|
|
|
|
<td class="nowrap">
|
|
|
|
{{ $s->hostname }}
|
|
|
|
</td>
|
|
|
|
@endif
|
|
|
|
<td class="text-center">
|
|
|
|
{{ App\Models\Server::serviceServerType($s->server_type) }}
|
|
|
|
</td>
|
2022-07-19 05:12:51 +02:00
|
|
|
<td class="text-center">{!!App\Models\Server::osIntToIcon($s->os->id, $s->os->name)!!}</td>
|
2022-03-05 16:29:58 +01:00
|
|
|
<td class="text-center">{{$s->cpu}}</td>
|
2022-10-31 02:02:40 +01:00
|
|
|
<td class="text-nowrap">{{$s->yabs[0]->cpu_freq ?? null}}</td>
|
2022-03-05 16:29:58 +01:00
|
|
|
<td class="text-nowrap">
|
2022-07-19 05:12:51 +02:00
|
|
|
@if(isset($s->yabs[0]->ram))
|
|
|
|
{{ $s->yabs[0]->ram}}<small>{{ $s->yabs[0]->ram_type}}</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@else
|
|
|
|
{{$s->ram_as_mb}}<small>MB</small>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if($s->disk > 1000)
|
2022-03-13 12:13:45 +01:00
|
|
|
{{ number_format(($s->disk / 1024),1) }}<small>TB</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@else
|
|
|
|
{{$s->disk}}<small>GB</small>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_location') === 1)
|
2022-07-19 05:12:51 +02:00
|
|
|
{{ $s->location->name }}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_provider') === 1)
|
2022-07-19 05:12:51 +02:00
|
|
|
{{ $s->provider->name }}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
2022-07-19 05:12:51 +02:00
|
|
|
<td class="text-nowrap">{{ $s->price->price }} {{$s->currency}} {{\App\Process::paymentTermIntToString($s->price->term)}}</td>
|
2022-03-05 16:29:58 +01:00
|
|
|
<td class="text-nowrap"> {{ $s->owned_since }}</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2023-09-21 14:24:02 +02:00
|
|
|
{{$s->yabs[0]->gb6_single ?? null}}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2023-09-21 14:24:02 +02:00
|
|
|
{{$s->yabs[0]->gb6_multi ?? null}}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2022-10-31 02:02:40 +01:00
|
|
|
{{$s->yabs[0]->disk_speed->d_4k ?? null}}<small>{{$s->yabs[0]->disk_speed->d_4k_type ?? null}}</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2022-10-31 02:02:40 +01:00
|
|
|
{{$s->yabs[0]->disk_speed->d_64k ?? null}}<small>{{$s->yabs[0]->disk_speed->d_64k_type ?? null}}</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2022-10-31 02:02:40 +01:00
|
|
|
{{$s->yabs[0]->disk_speed->d_512k ?? null}}<small>{{$s->yabs[0]->disk_speed->d_512k_type ?? null}}</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif</td>
|
|
|
|
<td class="text-nowrap">
|
|
|
|
@if(Session::get('show_server_value_yabs') === 1)
|
2022-10-31 02:02:40 +01:00
|
|
|
{{$s->yabs[0]->disk_speed->d_1m ?? null}}<small>{{$s->yabs[0]->disk_speed->d_1m_type ?? null}}</small>
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif</td>
|
|
|
|
@if(Session::get('show_server_value_ip') === 1)
|
|
|
|
<td class="text-nowrap">
|
2022-07-19 05:12:51 +02:00
|
|
|
@if($s->ips[0]->is_ipv4 === 1)
|
|
|
|
{{ $s->ips[0]->address }}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-nowrap">
|
2022-07-19 05:12:51 +02:00
|
|
|
@if($s->ips[0]->is_ipv6 === 1)
|
|
|
|
{{ $s->ips[0]->address }}
|
2022-03-05 16:29:58 +01:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
@endif
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
@else
|
|
|
|
<tr>
|
|
|
|
<td class="px-4 py-2 border text-red-500" colspan="3">No servers found.</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</x-card>
|
2022-10-20 06:33:50 +02:00
|
|
|
<x-details-footer></x-details-footer>
|
2022-03-05 16:29:58 +01:00
|
|
|
</div>
|
|
|
|
</x-app-layout>
|