diff options
| author | grothedev <grothedev@gmail.com> | 2024-12-20 22:43:07 -0600 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2024-12-20 22:43:07 -0600 |
| commit | c24efb154121f2f98c1d9d2473e96e9e1ec7379d (patch) | |
| tree | 4e621965b508f744d12bc4d720e4628bf7544896 /app/Http/Controllers/LinkController.php | |
| parent | b554f0614dd02924a536ce34f09fb1fc3d17bc3e (diff) | |
working on stuff
Diffstat (limited to 'app/Http/Controllers/LinkController.php')
| -rw-r--r-- | app/Http/Controllers/LinkController.php | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/Http/Controllers/LinkController.php b/app/Http/Controllers/LinkController.php new file mode 100644 index 0000000..a175d2f --- /dev/null +++ b/app/Http/Controllers/LinkController.php @@ -0,0 +1,66 @@ +<?php + +namespace App\Http\Controllers; + +use App\Http\Requests\StoreLinkRequest; +use App\Http\Requests\UpdateLinkRequest; +use App\Models\Link; + +class LinkController 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(StoreLinkRequest $request) + { + // + } + + /** + * Display the specified resource. + */ + public function show(Link $link) + { + // + } + + /** + * Show the form for editing the specified resource. + */ + public function edit(Link $link) + { + // + } + + /** + * Update the specified resource in storage. + */ + public function update(UpdateLinkRequest $request, Link $link) + { + // + } + + /** + * Remove the specified resource from storage. + */ + public function destroy(Link $link) + { + // + } +} |
