diff options
Diffstat (limited to 'app/Http/Controllers/ItemController.php')
| -rw-r--r-- | app/Http/Controllers/ItemController.php | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/app/Http/Controllers/ItemController.php b/app/Http/Controllers/ItemController.php deleted file mode 100644 index 6b049c9..0000000 --- a/app/Http/Controllers/ItemController.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php - -namespace App\Http\Controllers; - -use App\Models\Item; -use Illuminate\Http\Request; - -class ItemController extends Controller -{ - /** - * Display a listing of the resource. - */ - public function index() - { - // - } - - /** - * Show the form for creating a new resource. - */ - public function create() - { - // - } - - /** - * Store a newly created resource in storage. - */ - public function store(Request $request) - { - // - } - - /** - * Display the specified resource. - */ - public function show(Item $item) - { - // - } - - /** - * Show the form for editing the specified resource. - */ - public function edit(Item $item) - { - // - } - - /** - * Update the specified resource in storage. - */ - public function update(Request $request, Item $item) - { - // - } - - /** - * Remove the specified resource from storage. - */ - public function destroy(Item $item) - { - // - } -} |
