summaryrefslogtreecommitdiff
path: root/app/Http/Controllers/LinkController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Controllers/LinkController.php')
-rw-r--r--app/Http/Controllers/LinkController.php66
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)
+ {
+ //
+ }
+}