From a2743376f84b0b36fe41dffd8d79b73b57394e6e Mon Sep 17 00:00:00 2001 From: IceToast <> Date: Thu, 22 Dec 2022 22:36:28 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=9A=9A=20Move=20imprint/priva?= =?UTF-8?q?cy=20to=20own=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/{ => information}/imprint-content.blade.php | 0 resources/views/{ => information}/imprint.blade.php | 2 +- resources/views/{ => information}/privacy-content.blade.php | 0 resources/views/{ => information}/privacy.blade.php | 2 +- routes/web.php | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename resources/views/{ => information}/imprint-content.blade.php (100%) rename resources/views/{ => information}/imprint.blade.php (90%) rename resources/views/{ => information}/privacy-content.blade.php (100%) rename resources/views/{ => information}/privacy.blade.php (90%) diff --git a/resources/views/imprint-content.blade.php b/resources/views/information/imprint-content.blade.php similarity index 100% rename from resources/views/imprint-content.blade.php rename to resources/views/information/imprint-content.blade.php diff --git a/resources/views/imprint.blade.php b/resources/views/information/imprint.blade.php similarity index 90% rename from resources/views/imprint.blade.php rename to resources/views/information/imprint.blade.php index fd0e98d6..421c9844 100644 --- a/resources/views/imprint.blade.php +++ b/resources/views/information/imprint.blade.php @@ -13,7 +13,7 @@
{{ __('Imprint') }}
- @include('imprint-content') + @include('information.imprint-content')
diff --git a/resources/views/privacy-content.blade.php b/resources/views/information/privacy-content.blade.php similarity index 100% rename from resources/views/privacy-content.blade.php rename to resources/views/information/privacy-content.blade.php diff --git a/resources/views/privacy.blade.php b/resources/views/information/privacy.blade.php similarity index 90% rename from resources/views/privacy.blade.php rename to resources/views/information/privacy.blade.php index de672081..081b186f 100644 --- a/resources/views/privacy.blade.php +++ b/resources/views/information/privacy.blade.php @@ -12,7 +12,7 @@
{{ __('Privacy Policy') }}
- @include('privacy-content') + @include('information.privacy-content')
diff --git a/routes/web.php b/routes/web.php index 3826dfa2..47dc9c82 100644 --- a/routes/web.php +++ b/routes/web.php @@ -53,10 +53,10 @@ Auth::routes(['verify' => true]); Route::post('payment/StripeWebhooks', [PaymentController::class, 'StripeWebhooks'])->name('payment.StripeWebhooks'); Route::get('/privacy', function () { - return view('privacy'); + return view('information.privacy'); })->name('privacy'); Route::get('/imprint', function () { - return view('imprint'); + return view('information.imprint'); })->name('imprint');