diff options
Diffstat (limited to 'app/Http/Controllers/ItemController.php')
| -rw-r--r-- | app/Http/Controllers/ItemController.php | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/app/Http/Controllers/ItemController.php b/app/Http/Controllers/ItemController.php new file mode 100644 index 0000000..6b049c9 --- /dev/null +++ b/app/Http/Controllers/ItemController.php @@ -0,0 +1,65 @@ +<?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) + { + // + } +} |
