From 3bef30d86108ccd907e24f0c77c5e768e3fbdebe Mon Sep 17 00:00:00 2001 From: cp6 Date: Sat, 19 Aug 2023 23:46:52 +1000 Subject: [PATCH] Removed un unused create() and store() from YabsController.php --- app/Http/Controllers/YabsController.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Http/Controllers/YabsController.php b/app/Http/Controllers/YabsController.php index 4574ea0..56839c8 100644 --- a/app/Http/Controllers/YabsController.php +++ b/app/Http/Controllers/YabsController.php @@ -15,16 +15,6 @@ class YabsController extends Controller return view('yabs.index', ['yabs' => 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)]);