diff options
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) - { - // - } -} |
