Jetzt beantragen!
This commit is contained in:
@@ -49,6 +49,10 @@ class WebsiteController extends Controller
|
||||
return view('content.services');
|
||||
}
|
||||
|
||||
public function apply(Request $request){
|
||||
return view('application.apply');
|
||||
}
|
||||
|
||||
|
||||
// c3gov-Stuffs
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ return [
|
||||
'news' => 'Neuigkeiten',
|
||||
'contact' => 'Kontakt',
|
||||
'imprint' => 'Impressum',
|
||||
'apply' => 'Jetzt beantragen',
|
||||
],
|
||||
'about' => [
|
||||
'subtitle' => 'Unbeschwertes Einreisen in die stationären sowie temporären CCC Bezirksregionen',
|
||||
|
||||
@@ -13,9 +13,10 @@ return [
|
||||
'nav' => [
|
||||
'about' => 'About us',
|
||||
'services' => 'Services',
|
||||
'imprint' => 'Imprint',
|
||||
'contact' => 'Contact',
|
||||
'news' => 'News',
|
||||
'contact' => 'Contact',
|
||||
'imprint' => 'Imprint',
|
||||
'apply' => 'Apply now',
|
||||
],
|
||||
'about' => [
|
||||
'subtitle' => 'Hassle-Free Entry into CCC’s Permanent and Temporary District Regions',
|
||||
|
||||
7
resources/views/application/apply.blade.php
Normal file
7
resources/views/application/apply.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
@extends('layout.app')
|
||||
@section('scripts')
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
@endsection
|
||||
@@ -41,6 +41,8 @@
|
||||
<li><a href="{{ route('news') }}">{{ __('app.nav.news') }}</a></li>
|
||||
<li><a href="{{ route('contact') }}">{{ __('app.nav.contact') }}</li>
|
||||
<li><a href="{{ route('imprint') }}">{{ __('app.nav.imprint') }}</a></li>
|
||||
<br />
|
||||
<li><a href="{{ route('apply') }}">{{ __('app.nav.apply') }}</a></li>
|
||||
@auth
|
||||
<br />
|
||||
<li><a href="{{ route('editTicker') }}">Ticker bearbeiten</a></li>
|
||||
|
||||
@@ -12,6 +12,7 @@ Route::get('/kontakt', [WebsiteController::class, 'contact'])->name('contact');
|
||||
Route::get('/impressum', [WebsiteController::class, 'imprint'])->name('imprint');
|
||||
Route::get('/services', [WebsiteController::class, 'services'])->name('services');
|
||||
Route::get('/neuigkeiten', [WebsiteController::class, 'news'])->name('news');
|
||||
Route::get('/beantragen', [WebsiteController::class, 'apply'])->name('apply');
|
||||
|
||||
Route::get('/intern/registrieren', [WebsiteController::class, 'showRegister']);
|
||||
Route::post('/intern/registrieren/abschicken', [LoginController::class, 'register']);
|
||||
|
||||
Reference in New Issue
Block a user