miscellaneous modifications
This commit is contained in:
@@ -87,7 +87,6 @@ class WormholeController extends Controller
|
||||
'class' => 'required',
|
||||
'size' => 'required',
|
||||
'stability' => 'required',
|
||||
'type' => 'required',
|
||||
'system' => 'required',
|
||||
]);
|
||||
|
||||
@@ -120,7 +119,7 @@ class WormholeController extends Controller
|
||||
'duration_left' => $duration,
|
||||
'dateTime' => $request->dateTime,
|
||||
'class' => $request->class,
|
||||
'type' => $request->type,
|
||||
'type' => $request->class,
|
||||
'hole_size' => $request->size,
|
||||
'stability' => $request->stability,
|
||||
'details' => $request->details,
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
<th>Duration Left</th>
|
||||
<th>Scan Time</th>
|
||||
<th>WH Class</th>
|
||||
<th>WH Type</th>
|
||||
<th>Hole Size</th>
|
||||
<th>Stability</th>
|
||||
<th>Mass Allowed</th>
|
||||
@@ -26,7 +25,6 @@
|
||||
<td>{{ $wormhole->duration_left }}</td>
|
||||
<td>{{ $wormhole->dateTime }}</td>
|
||||
<td>{{ $wormhole->class }}</td>
|
||||
<td>{{ $wormhole->type }}</td>
|
||||
<td>{{ $wormhole->hole_size }}</td>
|
||||
<td>{{ $wormhole->stability }}</td>
|
||||
<td>{{ $wormhole->mass_allowed }}</td>
|
||||
|
||||
@@ -28,10 +28,6 @@
|
||||
{{ Form::label('class', 'WH Class') }}
|
||||
{{ Form::select('class', $class, null, ['class' => 'form-control']) }}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ Form::label('type', 'WH Type') }}
|
||||
{{ Form::select('class', $type, null, ['class' => 'form-control']) }}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ Form::label('size', 'WH Size') }}
|
||||
{{ Form::select('size', $size, null, ['class' => 'form-control']) }}
|
||||
|
||||
Reference in New Issue
Block a user