Yabs::allYabs()]); } public function create() { abort(404);//Use new YABS json output POST method -s "URL" } public function store(Request $request) { abort(404);//Storing YABS now done through APiController } public function show(Yabs $yab) { return view('yabs.show', ['yabs' => Yabs::yabs($yab->id)]); } public function destroy(Yabs $yab) { if ($yab->delete()) { if (Server::serverYabsAmount($yab->server_id) === 0) { DB::table('servers') ->where('id', $yab->server_id) ->update(['has_yabs' => 0]); } Cache::forget('all_yabs'); Cache::forget("yabs.{$yab->id}"); return redirect()->route('yabs.index') ->with('success', 'YABS was deleted Successfully.'); } return redirect()->route('yabs.index') ->with('error', 'YABS was not deleted.'); } public function chooseYabsCompare() { $all_yabs = Yabs::allYabs(); if (isset($all_yabs[1])) { return view('yabs.choose-compare', compact('all_yabs')); } return redirect()->route('yabs.index') ->with('error', 'You need atleast 2 YABS to do a compare'); } public function compareYabs(string $yabs1, string $yabs2) { $yabs1_data = Yabs::yabs($yabs1); if (is_null($yabs1_data)) { abort(404); } $yabs2_data = Yabs::yabs($yabs2); if (is_null($yabs2_data)) { abort(404); } return view('yabs.compare', compact('yabs1_data', 'yabs2_data')); } public function yabsToJson(Yabs $yab): array { $all_yabs = Yabs::yabs($yab->id)[0]; return Yabs::buildYabsArray($all_yabs); } }