diff --git a/app/Http/Controllers/Admin/NewsStoryController.php b/app/Http/Controllers/Admin/NewsStoryController.php
new file mode 100644
index 0000000..6dc3ca0
--- /dev/null
+++ b/app/Http/Controllers/Admin/NewsStoryController.php
@@ -0,0 +1,67 @@
+paginate(15);
+ return view('admin.news.index', compact('stories'));
+ }
+
+ /**
+ * Show the form for creating a new resource.
+ */
+ public function create()
+ {
+ return view('admin.news.create');
+ }
+
+ /**
+ * Store a newly created resource in storage.
+ */
+ public function store(Request $request)
+ {
+ //
+ }
+
+ /**
+ * Display the specified resource.
+ */
+ public function show(string $id)
+ {
+ //
+ }
+
+ /**
+ * Show the form for editing the specified resource.
+ */
+ public function edit(string $id)
+ {
+ //
+ }
+
+ /**
+ * Update the specified resource in storage.
+ */
+ public function update(Request $request, string $id)
+ {
+ //
+ }
+
+ /**
+ * Remove the specified resource from storage.
+ */
+ public function destroy(string $id)
+ {
+ //
+ }
+}
diff --git a/app/View/Components/Layout/Admin.php b/app/View/Components/Layout/Admin.php
index b6a8707..0623231 100644
--- a/app/View/Components/Layout/Admin.php
+++ b/app/View/Components/Layout/Admin.php
@@ -36,6 +36,10 @@ class Admin extends Component
'name' => 'Audition Etudes',
'link' => route('admin.etudes.index'),
],
+ [
+ 'name' => 'News Stories',
+ 'link' => route('admin.news.index'),
+ ]
];
}
diff --git a/resources/css/app.css b/resources/css/app.css
index f5f339c..0a01846 100644
--- a/resources/css/app.css
+++ b/resources/css/app.css
@@ -1,6 +1,7 @@
@import 'tailwindcss';
@layer base {
+
dl dt {
@apply font-semibold;
}
diff --git a/resources/views/admin/news/create.blade.php b/resources/views/admin/news/create.blade.php
new file mode 100644
index 0000000..f8d6f72
--- /dev/null
+++ b/resources/views/admin/news/create.blade.php
@@ -0,0 +1,48 @@
+