mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 06:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layouts.admin')
 | |
| 
 | |
| @section('title')
 | |
|     Eggs
 | |
| @endsection
 | |
| 
 | |
| @section('content-header')
 | |
|     <h1>Eggs</h1>
 | |
|     <ol class="breadcrumb">
 | |
|         <li><a href="{{ route('admin.index') }}">Admin</a></li>
 | |
|         <li class="active">Eggs</li>
 | |
|     </ol>
 | |
| @endsection
 | |
| 
 | |
| @section('content')
 | |
| <div class="row">
 | |
|     <div class="col-xs-12">
 | |
|         <div class="alert alert-warning">
 | |
|             Eggs allow extreme flexibility and configuration. Please note that modifying an egg can cause issues with your server may brick it.
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| <div class="row">
 | |
|     <div class="col-xs-12">
 | |
|         <div class="box box-primary">
 | |
|             <div class="box-header with-border">
 | |
|                 <h3 class="box-title">Eggs</h3>
 | |
|                 <div class="box-tools">
 | |
|                     <a href="#" class="btn btn-sm btn-success" data-toggle="modal" data-target="#importServiceOptionModal" role="button"><i class="fa fa-upload"></i> Import Egg</a>
 | |
|                     <a href="{{ route('admin.eggs.new') }}" class="btn btn-primary btn-sm">Create New</a>
 | |
|                 </div>
 | |
|             </div>
 | |
|             <div class="box-body table-responsive no-padding">
 | |
|                 <table class="table table-hover">
 | |
|                     <tr>
 | |
|                         <th>ID</th>
 | |
|                         <th>Name</th>
 | |
|                         <th>Description</th>
 | |
|                         <th class="text-center">Servers</th>
 | |
|                         <th class="text-center"></th>
 | |
|                     </tr>
 | |
|                     @foreach($eggs as $egg)
 | |
|                         <tr>
 | |
|                             <td class="align-middle"><code>{{ $egg->id }}</code></td>
 | |
|                             <td class="align-middle"><a href="{{ route('admin.eggs.view', $egg->id) }}" data-toggle="tooltip" data-placement="right" title="{{ $egg->author }}">{{ $egg->name }}</a></td>
 | |
|                             <td class="col-xs-8 align-middle">{{ $egg->description }}</td>
 | |
|                             <td class="text-center align-middle"><code>{{ $egg->servers->count() }}</code></td>
 | |
|                             <td class="align-middle">
 | |
|                                 <a href="{{ route('admin.eggs.export', ['egg' => $egg->id]) }}"><i class="fa fa-download"></i></a>
 | |
|                             </td>
 | |
|                         </tr>
 | |
|                     @endforeach
 | |
|                 </table>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| <div class="modal fade" tabindex="-1" role="dialog" id="importServiceOptionModal">
 | |
|     <div class="modal-dialog" role="document">
 | |
|         <div class="modal-content">
 | |
|             <div class="modal-header">
 | |
|                 <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
 | |
|                 <h4 class="modal-title">Import an Egg</h4>
 | |
|             </div>
 | |
|             <form action="{{ route('admin.eggs.import') }}" enctype="multipart/form-data" method="POST">
 | |
|                 <div class="modal-body">
 | |
|                     <div class="form-group">
 | |
|                         <label class="control-label" for="pImportFile">Egg File <span class="field-required"></span></label>
 | |
|                         <div>
 | |
|                             <input id="pImportFile" type="file" name="import_file" class="form-control" accept="application/json" />
 | |
|                             <p class="small text-muted">Select the <code>.json</code> file for the new egg that you wish to import.</p>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|                 <div class="modal-footer">
 | |
|                     {{ csrf_field() }}
 | |
|                     <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
 | |
|                     <button type="submit" class="btn btn-primary">Import</button>
 | |
|                 </div>
 | |
|             </form>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| @endsection
 | 
