diff options
| author | grothedev <grothedev@gmail.com> | 2026-03-06 11:14:32 -0600 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2026-03-06 11:14:32 -0600 |
| commit | 11e296dc247d2f7d15fe677c0b1b3be659cc135d (patch) | |
| tree | 9d2ee95dfc064f7c348f33ffe462cd71957303ac /app/Http/Controllers/InventoryController.php | |
| parent | 4e4827e9f5ef58085e032a88276dc8ae2b4462b0 (diff) | |
clean up unused stuff. though i want to hold on to the idea i was working with
Diffstat (limited to 'app/Http/Controllers/InventoryController.php')
| -rw-r--r-- | app/Http/Controllers/InventoryController.php | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/app/Http/Controllers/InventoryController.php b/app/Http/Controllers/InventoryController.php deleted file mode 100644 index 267a032..0000000 --- a/app/Http/Controllers/InventoryController.php +++ /dev/null @@ -1,65 +0,0 @@ -<?php - -namespace App\Http\Controllers; - -use App\Models\Inventory; -use Illuminate\Http\Request; - -class InventoryController 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(Inventory $inventory) - { - // - } - - /** - * Show the form for editing the specified resource. - */ - public function edit(Inventory $inventory) - { - // - } - - /** - * Update the specified resource in storage. - */ - public function update(Request $request, Inventory $inventory) - { - // - } - - /** - * Remove the specified resource from storage. - */ - public function destroy(Inventory $inventory) - { - // - } -} |
