wormhole stuff

This commit is contained in:
2019-08-05 02:09:51 -05:00
parent 7950d7d5ea
commit 41d433b7c8
5 changed files with 1020 additions and 96 deletions

View File

@@ -19,18 +19,76 @@ class WormholeController extends Controller
}
public function displayWormholeForm() {
//Declare a few array variables
$duration = array();
$class = array();
$stability = array();
$size = array();
//Get the duration from the table
$duration = [
'This wormhole has not yet begun its natural cycle of decay and should last at least another day.',
'This wormhole is beginning to decay, but will not last another day.',
'This wormhole is reaching the end of its natural lifetime',
];
//Get the wh classes from the table
$class = [
'C1',
'C2',
'C3',
'C4',
'C5',
'C6',
'C7',
'C8',
'C9',
'C13',
'Drifter',
'Thera',
'Exit WH',
];
//Get the wh types from the table
$type = WormholeType::pluck('type');
//Get the wh sizes from the table
$size = [
'XS',
'S',
'M',
'L',
'XL',
];
//Get the wh stabilities from the table
$stability = [
'Stable',
'Non-Critical',
'Critical',
];
//Return all the variables to the view
return view('wormholes.form')->with('class', $class)
->with('type', $type)
->with('size', $size)
->with('stability', $stability)
->with('duration', $duration);
}
public function storeWormholeForm() {
public function storeWormhole() {
$this->validate($request, [
'sig' => 'required',
'duration' => 'required',
'date' => 'required',
'class' => 'required',
'size' => 'required',
'stability' => 'required',
]);
}
public function displayWormholes() {
}
private function wormholes() {
}
}