Implemented the details footer component
Implemented the details footer component
This commit is contained in:
parent
c7a9e5ad80
commit
eda9d1b945
|
@ -57,12 +57,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">dns</x-slot>
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
<x-slot name="header">
|
||||
{{ __('Domains') }}
|
||||
</x-slot>
|
||||
<div class="container" id="app">
|
||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||
<x-card class="shadow mt-3">
|
||||
<a href="{{ route('domains.create') }}" class="btn btn-primary mb-3">Add a domain</a>
|
||||
<x-response-alerts></x-response-alerts>
|
||||
<div class="container" id="app">
|
||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||
<x-card class="shadow mt-3">
|
||||
<a href="{{ route('domains.create') }}" class="btn btn-primary mb-3">Add a domain</a>
|
||||
<x-response-alerts></x-response-alerts>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered">
|
||||
<thead class="table-light">
|
||||
|
@ -32,12 +32,14 @@
|
|||
@foreach($domains as $domain)
|
||||
<tr>
|
||||
<td class="text-nowrap"><a href="https://{{ $domain->domain }}.{{$domain->extension}}"
|
||||
class="text-decoration-none">{{ $domain->domain }}.{{$domain->extension}}</a></td>
|
||||
class="text-decoration-none">{{ $domain->domain }}
|
||||
.{{$domain->extension}}</a></td>
|
||||
<td class="text-nowrap">{{ $domain->owned_since}}</td>
|
||||
<td class="text-nowrap">{{ now()->diffInDays($domain->price->next_due_date) }} <small>days</small>
|
||||
</td>
|
||||
<td class="text-nowrap">{{ $domain->provider->name}}</td>
|
||||
<td class="text-nowrap">{{ $domain->price->price }} <small>{{$domain->price->currency}}</small></td>
|
||||
<td class="text-nowrap">{{ $domain->price->price }}
|
||||
<small>{{$domain->price->currency}}</small></td>
|
||||
<td class="text-nowrap">
|
||||
<form action="{{ route('domains.destroy', $domain->id) }}" method="POST">
|
||||
<a href="{{ route('domains.show', $domain->id) }}"
|
||||
|
@ -63,12 +65,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">domains</x-slot>
|
||||
|
|
|
@ -56,12 +56,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-datatables-assets></x-datatables-assets>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -50,12 +50,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-datatables-assets></x-datatables-assets>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -49,12 +49,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-datatables-assets></x-datatables-assets>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -66,12 +66,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">misc</x-slot>
|
||||
|
|
|
@ -46,12 +46,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-datatables-assets></x-datatables-assets>
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -73,12 +73,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">reseller</x-slot>
|
||||
|
|
|
@ -145,11 +145,6 @@
|
|||
<x-slot name="route">{{ route('reseller.edit', $reseller->id) }}</x-slot>
|
||||
</x-edit-btn>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
|
|
|
@ -129,11 +129,6 @@
|
|||
<x-slot name="route">{{ route('seedboxes.edit', $seedbox_data->id) }}</x-slot>
|
||||
</x-edit-btn>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
|
|
|
@ -194,12 +194,8 @@
|
|||
</div>
|
||||
</x-card>
|
||||
</div>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>Built on Laravel
|
||||
v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})</small></p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
axios.defaults.headers.common = {
|
||||
'Content-Type': 'application/json',
|
||||
|
@ -223,7 +219,7 @@
|
|||
|
||||
if (hostname) {
|
||||
axios
|
||||
.get('/api/online/' + event.target.id, {headers: {'Authorization': 'Bearer ' + document.querySelector('meta[name="api_token"]').getAttribute('content')}})
|
||||
.get('/api/online/' + event.target.id, {headers: {'Authorization': 'Bearer ' + document.querySelector('meta[name="api_token"]').getAttribute('content')}})
|
||||
.then(response => (this.status = response.data.is_online))
|
||||
.finally(() => {
|
||||
if (this.status) {
|
||||
|
|
|
@ -211,11 +211,6 @@
|
|||
<p id="yabs_code" class="d-none pt-3"><code>curl -sL yabs.sh | bash -s -- -s "{{route('api.store-yabs', [$server_data->id, \Illuminate\Support\Facades\Auth::user()->api_token])}}"</code></p>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
|
|
|
@ -74,10 +74,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>Built on Laravel
|
||||
v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})</small></p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">shared</x-slot>
|
||||
|
|
|
@ -140,11 +140,6 @@
|
|||
<x-slot name="route">{{ route('shared.edit', $shared->id) }}</x-slot>
|
||||
</x-edit-btn>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
|
|
|
@ -15,77 +15,78 @@
|
|||
<x-card class="shadow mt-3">
|
||||
<a href="{{ route('yabs.compare-choose') }}" class="btn btn-success mb-3">Compare YABs</a>
|
||||
<x-response-alerts></x-response-alerts>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered">
|
||||
<thead class="table-light">
|
||||
<tr class="bg-gray-100">
|
||||
<th>Server</th>
|
||||
<th>CPU</th>
|
||||
<th>CPU FREQ</th>
|
||||
<th>RAM</th>
|
||||
<th>DISK</th>
|
||||
<th>GB5 S</th>
|
||||
<th>GB5 M</th>
|
||||
<th>Ipv6</th>
|
||||
<th>4k</th>
|
||||
<th>64k</th>
|
||||
<th>512k</th>
|
||||
<th>1m</th>
|
||||
<th>Date</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if(!empty($yabs))
|
||||
@foreach($yabs as $yab)
|
||||
<tr>
|
||||
<td><a href="servers/{{$yab->server_id}}" class="text-decoration-none">{{ $yab->server->hostname }}</a></td>
|
||||
<td><span title="{{$yab->cpu_model}}">{{ $yab->cpu_cores }}</span></td>
|
||||
<td><span title="{{$yab->cpu_model}}">{{ $yab->cpu_freq }}<small>Mhz</small></span></td>
|
||||
<td>{{ $yab->ram }}<small>{{ $yab->ram_type }}</small></td>
|
||||
<td>{{ $yab->disk }}<small>{{ $yab->disk_type }}</small></td>
|
||||
<td><a href="https://browser.geekbench.com/v5/cpu/{{$yab->gb5_id}}" class="text-decoration-none">{{ $yab->gb5_single }}</a></td>
|
||||
<td><a href="https://browser.geekbench.com/v5/cpu/{{$yab->gb5_id}}" class="text-decoration-none">{{ $yab->gb5_multi }}</a></td>
|
||||
<td>@if($yab->has_ipv6 === 1)
|
||||
Yes
|
||||
@else
|
||||
No
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ $yab->disk_speed->d_4k }}<small>{{ $yab->disk_speed->d_4k_type }}</small></td>
|
||||
<td>{{ $yab->disk_speed->d_64k }}<small>{{ $yab->disk_speed->d_64k_type }}</small></td>
|
||||
<td>{{ $yab->disk_speed->d_512k }}<small>{{ $yab->disk_speed->d_512k_type }}</small></td>
|
||||
<td>{{ $yab->disk_speed->d_1m }}<small>{{ $yab->disk_speed->d_1m_type }}</small></td>
|
||||
<td>{{ date_format(new DateTime($yab->output_date), 'Y-m-d g:i a') }}</small></td>
|
||||
<td class="text-nowrap">
|
||||
<form action="{{ route('yabs.destroy', $yab->id) }}" method="POST">
|
||||
<a href="{{ route('yabs.show', $yab->id) }}"
|
||||
class="text-body mx-1">
|
||||
<i class="fas fa-eye" title="view"></i>
|
||||
</a>
|
||||
|
||||
<i class="fas fa-trash text-danger ms-3" @click="confirmDeleteModal"
|
||||
id="{{$yab->id}}" title="{{$yab->server->hostname}}"></i>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@else
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered">
|
||||
<thead class="table-light">
|
||||
<tr class="bg-gray-100">
|
||||
<th>Server</th>
|
||||
<th>CPU</th>
|
||||
<th>CPU FREQ</th>
|
||||
<th>RAM</th>
|
||||
<th>DISK</th>
|
||||
<th>GB5 S</th>
|
||||
<th>GB5 M</th>
|
||||
<th>Ipv6</th>
|
||||
<th>4k</th>
|
||||
<th>64k</th>
|
||||
<th>512k</th>
|
||||
<th>1m</th>
|
||||
<th>Date</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@if(!empty($yabs))
|
||||
@foreach($yabs as $yab)
|
||||
<tr>
|
||||
<td class="px-4 py-2 border text-red-500" colspan="3">No YABs found.</td>
|
||||
</tr>
|
||||
@endif
|
||||
</tbody>
|
||||
</table>
|
||||
<td><a href="servers/{{$yab->server_id}}"
|
||||
class="text-decoration-none">{{ $yab->server->hostname }}</a></td>
|
||||
<td><span title="{{$yab->cpu_model}}">{{ $yab->cpu_cores }}</span></td>
|
||||
<td><span title="{{$yab->cpu_model}}">{{ $yab->cpu_freq }}<small>Mhz</small></span></td>
|
||||
<td>{{ $yab->ram }}<small>{{ $yab->ram_type }}</small></td>
|
||||
<td>{{ $yab->disk }}<small>{{ $yab->disk_type }}</small></td>
|
||||
<td><a href="https://browser.geekbench.com/v5/cpu/{{$yab->gb5_id}}"
|
||||
class="text-decoration-none">{{ $yab->gb5_single }}</a></td>
|
||||
<td><a href="https://browser.geekbench.com/v5/cpu/{{$yab->gb5_id}}"
|
||||
class="text-decoration-none">{{ $yab->gb5_multi }}</a></td>
|
||||
<td>@if($yab->has_ipv6 === 1)
|
||||
Yes
|
||||
@else
|
||||
No
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ $yab->disk_speed->d_4k }}<small>{{ $yab->disk_speed->d_4k_type }}</small></td>
|
||||
<td>{{ $yab->disk_speed->d_64k }}<small>{{ $yab->disk_speed->d_64k_type }}</small></td>
|
||||
<td>{{ $yab->disk_speed->d_512k }}<small>{{ $yab->disk_speed->d_512k_type }}</small>
|
||||
</td>
|
||||
<td>{{ $yab->disk_speed->d_1m }}<small>{{ $yab->disk_speed->d_1m_type }}</small></td>
|
||||
<td>{{ date_format(new DateTime($yab->output_date), 'Y-m-d g:i a') }}</small></td>
|
||||
<td class="text-nowrap">
|
||||
<form action="{{ route('yabs.destroy', $yab->id) }}" method="POST">
|
||||
<a href="{{ route('yabs.show', $yab->id) }}"
|
||||
class="text-body mx-1">
|
||||
<i class="fas fa-eye" title="view"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<i class="fas fa-trash text-danger ms-3" @click="confirmDeleteModal"
|
||||
id="{{$yab->id}}" title="{{$yab->server->hostname}}"></i>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@else
|
||||
<tr>
|
||||
<td class="px-4 py-2 border text-red-500" colspan="3">No YABs found.</td>
|
||||
</tr>
|
||||
@endif
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>Built on Laravel
|
||||
v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})</small></p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">yabs</x-slot>
|
||||
</x-modal-delete-script>
|
||||
<x-modal-delete-script>
|
||||
<x-slot name="uri">yabs</x-slot>
|
||||
</x-modal-delete-script>
|
||||
</x-app-layout>
|
||||
|
|
|
@ -135,11 +135,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</x-card>
|
||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
||||
<p class="text-muted mt-4 text-end"><small>
|
||||
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
|
||||
)</small>
|
||||
</p>
|
||||
@endif
|
||||
<x-details-footer></x-details-footer>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
|
|
Loading…
Reference in New Issue
Block a user