| 
									
										
										
										
											2022-10-20 14:57:30 +11:00
										 |  |  | @section('title', 'Seed boxes') | 
					
						
							| 
									
										
										
										
											2022-11-13 15:53:05 +11:00
										 |  |  | <x-app-layout> | 
					
						
							|  |  |  |     <x-slot name="header"> | 
					
						
							|  |  |  |         {{ __('Seed boxes') }} | 
					
						
							|  |  |  |     </x-slot> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |     <div class="container" id="app"> | 
					
						
							|  |  |  |         <div class="card shadow mt-3"> | 
					
						
							|  |  |  |             <div class="card-body"> | 
					
						
							|  |  |  |                 <a href="{{ route('seedboxes.create') }}" class="btn btn-primary mb-3">Add a seed box</a> | 
					
						
							| 
									
										
										
										
											2022-10-31 16:02:18 +11:00
										 |  |  |                 <x-response-alerts></x-response-alerts> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                 <div class="table-responsive"> | 
					
						
							|  |  |  |                     <table class="table table-bordered"> | 
					
						
							|  |  |  |                         <thead class="table-light"> | 
					
						
							|  |  |  |                         <tr class="bg-gray-100"> | 
					
						
							|  |  |  |                             <th>Title</th> | 
					
						
							|  |  |  |                             <th>Type</th> | 
					
						
							|  |  |  |                             <th>Location</th> | 
					
						
							|  |  |  |                             <th>Provider</th> | 
					
						
							|  |  |  |                             <th>Disk</th> | 
					
						
							|  |  |  |                             <th>BWidth</th> | 
					
						
							|  |  |  |                             <th>Port</th> | 
					
						
							|  |  |  |                             <th>Price</th> | 
					
						
							|  |  |  |                             <th>Due</th> | 
					
						
							|  |  |  |                             <th>Had since</th> | 
					
						
							|  |  |  |                             <th>Actions</th> | 
					
						
							|  |  |  |                         </tr> | 
					
						
							|  |  |  |                         </thead> | 
					
						
							|  |  |  |                         <tbody> | 
					
						
							|  |  |  |                         @if(isset($seedboxes[0])) | 
					
						
							|  |  |  |                             @foreach($seedboxes as $row) | 
					
						
							|  |  |  |                                 <tr> | 
					
						
							|  |  |  |                                     <td>{{ $row->title }}</td> | 
					
						
							|  |  |  |                                     <td>{{ $row->seed_box_type }}</td> | 
					
						
							| 
									
										
										
										
											2022-07-20 14:35:37 +10:00
										 |  |  |                                     <td class="text-nowrap">{{ $row->location->name }}</td> | 
					
						
							|  |  |  |                                     <td class="text-nowrap">{{ $row->provider->name }}</td> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                     <td> | 
					
						
							|  |  |  |                                         @if($row->disk_as_gb >= 1000) | 
					
						
							|  |  |  |                                             {{ number_format($row->disk_as_gb / 1000,1) }} <small>TB</small> | 
					
						
							|  |  |  |                                         @else | 
					
						
							|  |  |  |                                             {{ $row->disk_as_gb }} <small>GB</small> | 
					
						
							|  |  |  |                                         @endif | 
					
						
							|  |  |  |                                     </td> | 
					
						
							|  |  |  |                                     <td> | 
					
						
							|  |  |  |                                         @if($row->bandwidth >= 1000) | 
					
						
							|  |  |  |                                             {{ number_format($row->bandwidth / 1000,1) }} <small>TB</small> | 
					
						
							|  |  |  |                                         @else | 
					
						
							|  |  |  |                                             {{ $row->bandwidth }} <small>GB</small> | 
					
						
							|  |  |  |                                         @endif | 
					
						
							|  |  |  |                                     </td> | 
					
						
							|  |  |  |                                     <td> | 
					
						
							|  |  |  |                                         @if($row->port_speed >= 1000) | 
					
						
							|  |  |  |                                             {{ number_format($row->port_speed / 1000,1) }} <small>Gbps</small> | 
					
						
							|  |  |  |                                         @else | 
					
						
							|  |  |  |                                             {{ $row->port_speed }} <small>Mbps</small> | 
					
						
							|  |  |  |                                         @endif | 
					
						
							|  |  |  |                                     </td> | 
					
						
							| 
									
										
										
										
											2022-07-20 14:35:37 +10:00
										 |  |  |                                     <td>{{ $row->price->price }} {{$row->price->currency}} {{\App\Process::paymentTermIntToString($row->price->term)}}</td> | 
					
						
							|  |  |  |                                     <td>{{Carbon\Carbon::parse($row->price->next_due_date)->diffForHumans()}}</td> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                     <td class="text-nowrap">{{ $row->owned_since }}</td> | 
					
						
							|  |  |  |                                     <td class="text-nowrap"> | 
					
						
							| 
									
										
										
										
											2022-07-20 14:35:37 +10:00
										 |  |  |                                         <form action="{{ route('seedboxes.destroy', $row->id) }}" method="POST"> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                             @csrf | 
					
						
							| 
									
										
										
										
											2022-07-20 14:35:37 +10:00
										 |  |  |                                             <a href="{{ route('seedboxes.show', $row->id) }}" | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                                class="text-body mx-1"> | 
					
						
							|  |  |  |                                                 <i class="fas fa-eye" title="view"></i> | 
					
						
							|  |  |  |                                             </a> | 
					
						
							| 
									
										
										
										
											2022-07-20 14:35:37 +10:00
										 |  |  |                                             <a href="{{ route('seedboxes.edit', $row->id) }}" | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                                class="text-body mx-1"> | 
					
						
							|  |  |  |                                                 <i class="fas fa-pen" title="edit"></i> | 
					
						
							|  |  |  |                                             </a> | 
					
						
							| 
									
										
										
										
											2022-10-13 14:19:39 +11:00
										 |  |  |                                             <i class="fas fa-trash text-danger ms-3" @click="confirmDeleteModal" | 
					
						
							|  |  |  |                                                id="{{$row->id}}" title="{{$row->title}}"></i> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |                                         </form> | 
					
						
							|  |  |  |                                     </td> | 
					
						
							|  |  |  |                                 </tr> | 
					
						
							|  |  |  |                             @endforeach | 
					
						
							|  |  |  |                         @else | 
					
						
							|  |  |  |                             <tr> | 
					
						
							|  |  |  |                                 <td class="px-4 py-2 border text-red-500" colspan="3">No seed boxes found.</td> | 
					
						
							|  |  |  |                             </tr> | 
					
						
							|  |  |  |                         @endif | 
					
						
							|  |  |  |                         </tbody> | 
					
						
							|  |  |  |                     </table> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2022-10-20 14:57:30 +11:00
										 |  |  |         <x-details-footer></x-details-footer> | 
					
						
							| 
									
										
										
										
											2022-11-13 15:53:05 +11:00
										 |  |  |         <x-delete-confirm-modal></x-delete-confirm-modal> | 
					
						
							| 
									
										
										
										
											2022-05-16 12:07:35 +10:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2022-10-20 11:56:35 +11:00
										 |  |  |     <x-modal-delete-script> | 
					
						
							|  |  |  |         <x-slot name="uri">seedboxes</x-slot> | 
					
						
							|  |  |  |     </x-modal-delete-script> | 
					
						
							| 
									
										
										
										
											2022-11-13 15:53:05 +11:00
										 |  |  | </x-app-layout> |