miscellaneous modifications

This commit is contained in:
2020-03-04 00:01:20 -06:00
parent cfe58f07a9
commit b9044b077f
3 changed files with 1 additions and 8 deletions

View File

@@ -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,

View File

@@ -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>

View File

@@ -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']) }}