diff --git a/app/Nova/BitcoinEvent.php b/app/Nova/BitcoinEvent.php
index 4844744c..a5b8590b 100644
--- a/app/Nova/BitcoinEvent.php
+++ b/app/Nova/BitcoinEvent.php
@@ -47,6 +47,11 @@ class BitcoinEvent extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -87,14 +92,14 @@ class BitcoinEvent extends Resource
->rules('required', 'string'),
BelongsTo::make(__('Venue'), 'venue', Venue::class)
- ->searchable(),
+ ->searchable()->showCreateRelationButton()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/BookCase.php b/app/Nova/BookCase.php
index eebeb70e..cbdcb971 100644
--- a/app/Nova/BookCase.php
+++ b/app/Nova/BookCase.php
@@ -50,6 +50,11 @@ class BookCase extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -130,7 +135,7 @@ class BookCase extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/City.php b/app/Nova/City.php
index 453a8acd..dd531af7 100644
--- a/app/Nova/City.php
+++ b/app/Nova/City.php
@@ -49,6 +49,11 @@ class City extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Land: :name', ['name' => $this->country->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -78,7 +83,9 @@ class City extends Resource
->step(0.000001)
->help('https://www.latlong.net/'),
- BelongsTo::make(__('Country'), 'country', Country::class),
+ BelongsTo::make(__('Country'), 'country', Country::class)
+ ->searchable()
+ ->withSubtitles(),
HasMany::make(__('Venues'), 'venues', Venue::class),
@@ -91,7 +98,8 @@ class City extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()
+ ->withSubtitles(),
];
}
diff --git a/app/Nova/Country.php b/app/Nova/Country.php
index 8c949b76..ff1761ed 100644
--- a/app/Nova/Country.php
+++ b/app/Nova/Country.php
@@ -43,6 +43,11 @@ class Country extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Code: :code', ['code' => $this->code]);
+ }
+
/**
* Get the fields displayed by the resource.
*
diff --git a/app/Nova/Course.php b/app/Nova/Course.php
index 1fd884fa..d7b1ac47 100644
--- a/app/Nova/Course.php
+++ b/app/Nova/Course.php
@@ -29,6 +29,14 @@ class Course extends Resource
* @var string
*/
public static $title = 'name';
+ /**
+ * The columns that should be searched.
+ * @var array
+ */
+ public static $search = [
+ 'id',
+ 'name',
+ ];
public static function label()
{
@@ -40,15 +48,6 @@ class Course extends Resource
return __('Course');
}
- /**
- * The columns that should be searched.
- * @var array
- */
- public static $search = [
- 'id',
- 'name',
- ];
-
public static function relatableLecturers(NovaRequest $request, $query, Field $field)
{
if ($field instanceof BelongsTo) {
@@ -67,6 +66,11 @@ class Course extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -101,7 +105,7 @@ class Course extends Resource
BelongsTo::make(__('Lecturer'), 'lecturer', Lecturer::class)
->searchable()
- ->help(__('Wähle hier den Dozenten aus, der den Kurs hält. Wenn der Dozent nicht in der Liste ist, dann erstelle ihn zuerst unter "Dozenten".')),
+ ->help(__('Wähle hier den Dozenten aus, der den Kurs hält. Wenn der Dozent nicht in der Liste ist, dann erstelle ihn zuerst unter "Dozenten".'))->withSubtitles(),
SelectPlus::make(__('Categories'), 'categories', Category::class)
->usingIndexLabel('name'),
@@ -114,7 +118,7 @@ class Course extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/CourseEvent.php b/app/Nova/CourseEvent.php
index d4661d31..30a3b77b 100644
--- a/app/Nova/CourseEvent.php
+++ b/app/Nova/CourseEvent.php
@@ -29,17 +29,6 @@ class CourseEvent extends Resource
'course.name',
];
- public static function relatableCourses(NovaRequest $request, $query, Field $field)
- {
- if ($field instanceof BelongsTo) {
- $query->whereHas('lecturer', function ($query) use ($request) {
- $query->where('team_id', $request->user()->id);
- });
- }
-
- return $query;
- }
-
public function title()
{
return $this->from.' - '.$this->venue->name.' - '.$this->course->name;
@@ -59,6 +48,11 @@ class CourseEvent extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -85,17 +79,18 @@ class CourseEvent extends Resource
->rules('required')
->displayUsing(fn($value) => $value->asDateTime()),
- BelongsTo::make(__('Course'), 'course', Course::class),
+ BelongsTo::make(__('Course'), 'course', Course::class)
+ ->searchable()->showCreateRelationButton()->withSubtitles(),
BelongsTo::make(__('Venue'), 'venue', Venue::class)
- ->searchable(),
+ ->searchable()->showCreateRelationButton()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/Episode.php b/app/Nova/Episode.php
index ffbbc0e1..5ef6fb9a 100644
--- a/app/Nova/Episode.php
+++ b/app/Nova/Episode.php
@@ -76,6 +76,11 @@ class Episode extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
diff --git a/app/Nova/Lecturer.php b/app/Nova/Lecturer.php
index 7a270671..16f6972d 100644
--- a/app/Nova/Lecturer.php
+++ b/app/Nova/Lecturer.php
@@ -27,12 +27,6 @@ class Lecturer extends Resource
* @var string
*/
public static $title = 'name';
-
- public static function label()
- {
- return __('Lecturer/Content Creator');
- }
-
/**
* The columns that should be searched.
* @var array
@@ -42,9 +36,15 @@ class Lecturer extends Resource
'name',
];
+ public static function label()
+ {
+ return __('Lecturer/Content Creator');
+ }
+
public static function relatableTeams(NovaRequest $request, $query, Field $field)
{
- if ($field instanceof BelongsTo && !$request->user()->hasRole('super-admin')) {
+ if ($field instanceof BelongsTo && !$request->user()
+ ->hasRole('super-admin')) {
$query->where('id', $request->user()->current_team_id);
}
@@ -60,6 +60,11 @@ class Lecturer extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -103,7 +108,7 @@ class Lecturer extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/Library.php b/app/Nova/Library.php
index 757c2587..34eef72f 100644
--- a/app/Nova/Library.php
+++ b/app/Nova/Library.php
@@ -50,6 +50,11 @@ class Library extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -81,7 +86,7 @@ class Library extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/LibraryItem.php b/app/Nova/LibraryItem.php
index 1c58687f..c634f5d9 100644
--- a/app/Nova/LibraryItem.php
+++ b/app/Nova/LibraryItem.php
@@ -56,6 +56,11 @@ class LibraryItem extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -102,7 +107,7 @@ class LibraryItem extends Resource
->options(
config('languages.languages')
)
- ->rules('required', 'string'),
+ ->rules('required', 'string')->searchable(),
Tags::make('Tags')
->type('library_item')
@@ -122,7 +127,7 @@ class LibraryItem extends Resource
->rules('nullable', 'string')
->help('Hier bitte die URL zum Video einfügen, oder den Link zum Blog-Artikel, oder den Link zum Buch, oder das Markdown selbst einfügen.'),
- BelongsTo::make(__('Lecturer/Content Creator'), 'lecturer', Lecturer::class),
+ BelongsTo::make(__('Lecturer/Content Creator'), 'lecturer', Lecturer::class)->searchable()->withSubtitles(),
BelongsTo::make(__('Episode'), 'episode', Episode::class)
->nullable()
@@ -135,7 +140,7 @@ class LibraryItem extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/Meetup.php b/app/Nova/Meetup.php
index f51fe7fb..9606c8d0 100644
--- a/app/Nova/Meetup.php
+++ b/app/Nova/Meetup.php
@@ -46,6 +46,11 @@ class Meetup extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -68,14 +73,14 @@ class Meetup extends Resource
Text::make('Link')
->rules('required', 'string'),
- BelongsTo::make(__('City'), 'city', City::class)->searchable(),
+ BelongsTo::make(__('City'), 'city', City::class)->searchable()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/MeetupEvent.php b/app/Nova/MeetupEvent.php
index 3e4e8c95..a160608b 100644
--- a/app/Nova/MeetupEvent.php
+++ b/app/Nova/MeetupEvent.php
@@ -47,6 +47,11 @@ class MeetupEvent extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -74,14 +79,14 @@ class MeetupEvent extends Resource
->rules('required', 'string'),
BelongsTo::make('Meetup')
- ->searchable(),
+ ->searchable()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/Podcast.php b/app/Nova/Podcast.php
index 9583ee27..cb34715c 100644
--- a/app/Nova/Podcast.php
+++ b/app/Nova/Podcast.php
@@ -47,6 +47,11 @@ class Podcast extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -99,7 +104,7 @@ class Podcast extends Resource
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/app/Nova/User.php b/app/Nova/User.php
index 230b39f2..c46d3ddb 100644
--- a/app/Nova/User.php
+++ b/app/Nova/User.php
@@ -15,7 +15,6 @@ use Laravel\Nova\Http\Requests\NovaRequest;
class User extends Resource
{
-
/**
* The model the resource corresponds to.
* @var class-string<\App\Models\User>
diff --git a/app/Nova/Venue.php b/app/Nova/Venue.php
index dd5d9371..088648b4 100644
--- a/app/Nova/Venue.php
+++ b/app/Nova/Venue.php
@@ -48,6 +48,11 @@ class Venue extends Resource
->toString()));
}
+ public function subtitle()
+ {
+ return __('Stadt: :name', ['name' => $this->city->name]);
+ }
+
/**
* Get the fields displayed by the resource.
*
@@ -73,14 +78,14 @@ class Venue extends Resource
Text::make(__('Street'), 'street')
->rules('required', 'string'),
- BelongsTo::make(__('City'), 'city', City::class),
+ BelongsTo::make(__('City'), 'city', City::class)->searchable()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
- ->searchable(),
+ ->searchable()->withSubtitles(),
];
}
diff --git a/composer.lock b/composer.lock
index e71d8d7d..eaa32eb9 100644
--- a/composer.lock
+++ b/composer.lock
@@ -2524,16 +2524,16 @@
},
{
"name": "laravel/fortify",
- "version": "v1.14.0",
+ "version": "v1.14.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/fortify.git",
- "reference": "20aeaf31edbf01e21348954088641cdb3d48ebe8"
+ "reference": "04b4b9c20e421c415d0427904a72e08a21bdec27"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/fortify/zipball/20aeaf31edbf01e21348954088641cdb3d48ebe8",
- "reference": "20aeaf31edbf01e21348954088641cdb3d48ebe8",
+ "url": "https://api.github.com/repos/laravel/fortify/zipball/04b4b9c20e421c415d0427904a72e08a21bdec27",
+ "reference": "04b4b9c20e421c415d0427904a72e08a21bdec27",
"shasum": ""
},
"require": {
@@ -2583,20 +2583,20 @@
"issues": "https://github.com/laravel/fortify/issues",
"source": "https://github.com/laravel/fortify"
},
- "time": "2022-11-23T09:03:43+00:00"
+ "time": "2022-12-09T16:51:26+00:00"
},
{
"name": "laravel/framework",
- "version": "v9.43.0",
+ "version": "v9.44.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b"
+ "reference": "60808a7d9acd53461fd69634c08fc7e0a99fbf98"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
- "reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/60808a7d9acd53461fd69634c08fc7e0a99fbf98",
+ "reference": "60808a7d9acd53461fd69634c08fc7e0a99fbf98",
"shasum": ""
},
"require": {
@@ -2769,20 +2769,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-12-06T14:26:07+00:00"
+ "time": "2022-12-15T14:56:36+00:00"
},
{
"name": "laravel/jetstream",
- "version": "v2.12.6",
+ "version": "v2.13.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/jetstream.git",
- "reference": "bfed92ddacb22053ddfe1208f098fbd9d9404d89"
+ "reference": "790559c879bfcf3f51df87ba274211e741d6683e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/jetstream/zipball/bfed92ddacb22053ddfe1208f098fbd9d9404d89",
- "reference": "bfed92ddacb22053ddfe1208f098fbd9d9404d89",
+ "url": "https://api.github.com/repos/laravel/jetstream/zipball/790559c879bfcf3f51df87ba274211e741d6683e",
+ "reference": "790559c879bfcf3f51df87ba274211e741d6683e",
"shasum": ""
},
"require": {
@@ -2839,7 +2839,7 @@
"issues": "https://github.com/laravel/jetstream/issues",
"source": "https://github.com/laravel/jetstream"
},
- "time": "2022-12-05T15:16:43+00:00"
+ "time": "2022-12-15T14:58:38+00:00"
},
{
"name": "laravel/nova",
@@ -4983,16 +4983,16 @@
},
{
"name": "openspout/openspout",
- "version": "v4.9.0",
+ "version": "v4.10.0",
"source": {
"type": "git",
"url": "https://github.com/openspout/openspout.git",
- "reference": "7b0db352e25c83e42d3375f57041a30a1ea9cd2c"
+ "reference": "cbf753126f43095112a099eff23ba4f0a47245eb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/openspout/openspout/zipball/7b0db352e25c83e42d3375f57041a30a1ea9cd2c",
- "reference": "7b0db352e25c83e42d3375f57041a30a1ea9cd2c",
+ "url": "https://api.github.com/repos/openspout/openspout/zipball/cbf753126f43095112a099eff23ba4f0a47245eb",
+ "reference": "cbf753126f43095112a099eff23ba4f0a47245eb",
"shasum": ""
},
"require": {
@@ -5060,7 +5060,7 @@
],
"support": {
"issues": "https://github.com/openspout/openspout/issues",
- "source": "https://github.com/openspout/openspout/tree/v4.9.0"
+ "source": "https://github.com/openspout/openspout/tree/v4.10.0"
},
"funding": [
{
@@ -5072,7 +5072,7 @@
"type": "github"
}
],
- "time": "2022-12-13T07:41:37+00:00"
+ "time": "2022-12-17T07:17:20+00:00"
},
{
"name": "paragonie/constant_time_encoding",
@@ -10820,16 +10820,16 @@
},
{
"name": "symfony/console",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f"
+ "reference": "5a9bd5c543f00157c55face973c149957467db31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
- "reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f",
+ "url": "https://api.github.com/repos/symfony/console/zipball/5a9bd5c543f00157c55face973c149957467db31",
+ "reference": "5a9bd5c543f00157c55face973c149957467db31",
"shasum": ""
},
"require": {
@@ -10896,7 +10896,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.2.1"
+ "source": "https://github.com/symfony/console/tree/v6.2.2"
},
"funding": [
{
@@ -10912,7 +10912,7 @@
"type": "tidelift"
}
],
- "time": "2022-12-01T13:44:20+00:00"
+ "time": "2022-12-16T15:08:36+00:00"
},
{
"name": "symfony/css-selector",
@@ -11048,16 +11048,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9"
+ "reference": "12a25d01cc5273b2445e125d62b61d34db42297e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/b4e41f62c1124378863ff2705158a60da3e4c6b9",
- "reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/12a25d01cc5273b2445e125d62b61d34db42297e",
+ "reference": "12a25d01cc5273b2445e125d62b61d34db42297e",
"shasum": ""
},
"require": {
@@ -11099,7 +11099,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v6.2.1"
+ "source": "https://github.com/symfony/error-handler/tree/v6.2.2"
},
"funding": [
{
@@ -11115,20 +11115,20 @@
"type": "tidelift"
}
],
- "time": "2022-12-01T21:07:46+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "9efb1618fabee89515fe031314e8ed5625f85a53"
+ "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9efb1618fabee89515fe031314e8ed5625f85a53",
- "reference": "9efb1618fabee89515fe031314e8ed5625f85a53",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
+ "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
"shasum": ""
},
"require": {
@@ -11182,7 +11182,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.0"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.2"
},
"funding": [
{
@@ -11198,7 +11198,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-02T09:08:04+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
@@ -11345,16 +11345,16 @@
},
{
"name": "symfony/html-sanitizer",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/html-sanitizer.git",
- "reference": "28d19124099e860ef52da06ae251e37738b750fe"
+ "reference": "f978fcf5f2d66c66bf9922f8589b9be9a2b9526a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/28d19124099e860ef52da06ae251e37738b750fe",
- "reference": "28d19124099e860ef52da06ae251e37738b750fe",
+ "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/f978fcf5f2d66c66bf9922f8589b9be9a2b9526a",
+ "reference": "f978fcf5f2d66c66bf9922f8589b9be9a2b9526a",
"shasum": ""
},
"require": {
@@ -11394,7 +11394,7 @@
"sanitizer"
],
"support": {
- "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.0"
+ "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.2"
},
"funding": [
{
@@ -11410,20 +11410,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-06T15:18:34+00:00"
+ "time": "2022-12-14T10:28:02+00:00"
},
{
"name": "symfony/http-client",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
- "reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e"
+ "reference": "7054ad466f836309aef511789b9c697bc986d8ce"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/153540b6ed72eecdcb42dc847f8d8cf2e2516e8e",
- "reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/7054ad466f836309aef511789b9c697bc986d8ce",
+ "reference": "7054ad466f836309aef511789b9c697bc986d8ce",
"shasum": ""
},
"require": {
@@ -11479,7 +11479,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-client/tree/v6.2.0"
+ "source": "https://github.com/symfony/http-client/tree/v6.2.2"
},
"funding": [
{
@@ -11495,7 +11495,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-14T10:13:36+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/http-client-contracts",
@@ -11580,16 +11580,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac"
+ "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0bbd5a7e81b38f32504399b9199f265505b7bac",
- "reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ddf4dd35de1623e7c02013523e6c2137b67b636f",
+ "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f",
"shasum": ""
},
"require": {
@@ -11638,7 +11638,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.2.1"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.2.2"
},
"funding": [
{
@@ -11654,20 +11654,20 @@
"type": "tidelift"
}
],
- "time": "2022-12-04T18:26:13+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404"
+ "reference": "860a0189969b755cd571709bd32313aa8599867a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
- "reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/860a0189969b755cd571709bd32313aa8599867a",
+ "reference": "860a0189969b755cd571709bd32313aa8599867a",
"shasum": ""
},
"require": {
@@ -11749,7 +11749,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v6.2.1"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.2.2"
},
"funding": [
{
@@ -11765,20 +11765,20 @@
"type": "tidelift"
}
],
- "time": "2022-12-06T17:28:26+00:00"
+ "time": "2022-12-16T19:38:34+00:00"
},
{
"name": "symfony/mailer",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf"
+ "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
- "reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
+ "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
"shasum": ""
},
"require": {
@@ -11828,7 +11828,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v6.2.1"
+ "source": "https://github.com/symfony/mailer/tree/v6.2.2"
},
"funding": [
{
@@ -11844,7 +11844,7 @@
"type": "tidelift"
}
],
- "time": "2022-12-06T16:54:23+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/mailgun-mailer",
@@ -11913,16 +11913,16 @@
},
{
"name": "symfony/mime",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0"
+ "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/1e8005a7cbd79fb824ad81308ef2a76592a08bc0",
- "reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/8c98bf40406e791043890a163f6f6599b9cfa1ed",
+ "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed",
"shasum": ""
},
"require": {
@@ -11976,7 +11976,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.2.0"
+ "source": "https://github.com/symfony/mime/tree/v6.2.2"
},
"funding": [
{
@@ -11992,7 +11992,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-28T12:28:19+00:00"
+ "time": "2022-12-14T16:38:10+00:00"
},
{
"name": "symfony/options-resolver",
@@ -13207,16 +13207,16 @@
},
{
"name": "symfony/service-contracts",
- "version": "v3.1.1",
+ "version": "v3.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239"
+ "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239",
- "reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/aac98028c69df04ee77eb69b96b86ee51fbf4b75",
+ "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75",
"shasum": ""
},
"require": {
@@ -13232,7 +13232,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.1-dev"
+ "dev-main": "3.3-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -13272,7 +13272,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.1.1"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.2.0"
},
"funding": [
{
@@ -13288,7 +13288,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-30T19:18:58+00:00"
+ "time": "2022-11-25T10:21:52+00:00"
},
{
"name": "symfony/stopwatch",
@@ -13354,16 +13354,16 @@
},
{
"name": "symfony/string",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "145702685e0d12f81d755c71127bfff7582fdd36"
+ "reference": "863219fd713fa41cbcd285a79723f94672faff4d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/145702685e0d12f81d755c71127bfff7582fdd36",
- "reference": "145702685e0d12f81d755c71127bfff7582fdd36",
+ "url": "https://api.github.com/repos/symfony/string/zipball/863219fd713fa41cbcd285a79723f94672faff4d",
+ "reference": "863219fd713fa41cbcd285a79723f94672faff4d",
"shasum": ""
},
"require": {
@@ -13420,7 +13420,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v6.2.0"
+ "source": "https://github.com/symfony/string/tree/v6.2.2"
},
"funding": [
{
@@ -13436,20 +13436,20 @@
"type": "tidelift"
}
],
- "time": "2022-11-30T17:13:47+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "symfony/translation",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "c08de62caead8357244efcb809d0b1a2584f2198"
+ "reference": "3294288c335b6267eab14964bf2c46015663d93f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/c08de62caead8357244efcb809d0b1a2584f2198",
- "reference": "c08de62caead8357244efcb809d0b1a2584f2198",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/3294288c335b6267eab14964bf2c46015663d93f",
+ "reference": "3294288c335b6267eab14964bf2c46015663d93f",
"shasum": ""
},
"require": {
@@ -13518,7 +13518,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v6.2.0"
+ "source": "https://github.com/symfony/translation/tree/v6.2.2"
},
"funding": [
{
@@ -13534,7 +13534,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-02T09:08:04+00:00"
+ "time": "2022-12-13T18:04:17+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -13693,16 +13693,16 @@
},
{
"name": "symfony/var-dumper",
- "version": "v6.2.1",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "1e7544c8698627b908657e5276854d52ab70087a"
+ "reference": "6168f544827e897f708a684f75072a8c33a5e309"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1e7544c8698627b908657e5276854d52ab70087a",
- "reference": "1e7544c8698627b908657e5276854d52ab70087a",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6168f544827e897f708a684f75072a8c33a5e309",
+ "reference": "6168f544827e897f708a684f75072a8c33a5e309",
"shasum": ""
},
"require": {
@@ -13761,7 +13761,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.2.1"
+ "source": "https://github.com/symfony/var-dumper/tree/v6.2.2"
},
"funding": [
{
@@ -13777,7 +13777,7 @@
"type": "tidelift"
}
],
- "time": "2022-12-03T22:32:58+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
},
{
"name": "theseer/tokenizer",
@@ -14147,16 +14147,16 @@
},
{
"name": "wireui/wireui",
- "version": "v1.17.7",
+ "version": "v1.17.8",
"source": {
"type": "git",
"url": "https://github.com/wireui/wireui.git",
- "reference": "a103617f9381cac002016be0d88bdac9dc551c7f"
+ "reference": "cde361903acbfd6c09d639374204cb165901ce84"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/wireui/wireui/zipball/a103617f9381cac002016be0d88bdac9dc551c7f",
- "reference": "a103617f9381cac002016be0d88bdac9dc551c7f",
+ "url": "https://api.github.com/repos/wireui/wireui/zipball/cde361903acbfd6c09d639374204cb165901ce84",
+ "reference": "cde361903acbfd6c09d639374204cb165901ce84",
"shasum": ""
},
"require": {
@@ -14209,7 +14209,7 @@
],
"support": {
"issues": "https://github.com/wireui/wireui/issues",
- "source": "https://github.com/wireui/wireui/tree/v1.17.7"
+ "source": "https://github.com/wireui/wireui/tree/v1.17.8"
},
"funding": [
{
@@ -14217,7 +14217,7 @@
"type": "github"
}
],
- "time": "2022-11-28T17:38:50+00:00"
+ "time": "2022-12-14T03:18:26+00:00"
},
{
"name": "zbateson/mail-mime-parser",
@@ -15212,16 +15212,16 @@
},
{
"name": "laravel-lang/lang",
- "version": "12.7.2",
+ "version": "12.7.3",
"source": {
"type": "git",
"url": "https://github.com/Laravel-Lang/lang.git",
- "reference": "839ce5d81cd4a8deda5c09bb74af995371345c5b"
+ "reference": "28e1941e8799b48ee1fdcf64137e64fdfffc763e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/839ce5d81cd4a8deda5c09bb74af995371345c5b",
- "reference": "839ce5d81cd4a8deda5c09bb74af995371345c5b",
+ "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/28e1941e8799b48ee1fdcf64137e64fdfffc763e",
+ "reference": "28e1941e8799b48ee1fdcf64137e64fdfffc763e",
"shasum": ""
},
"require": {
@@ -15283,7 +15283,7 @@
"type": "open_collective"
}
],
- "time": "2022-12-14T13:47:21+00:00"
+ "time": "2022-12-16T20:43:31+00:00"
},
{
"name": "laravel-lang/publisher",
@@ -15557,16 +15557,16 @@
},
{
"name": "laravel/sail",
- "version": "v1.16.4",
+ "version": "v1.16.5",
"source": {
"type": "git",
"url": "https://github.com/laravel/sail.git",
- "reference": "72412b14d6f4e73b71b5f3068bdb064184fbb001"
+ "reference": "9ec5338d13bdc941a23347cb36385988c525fe02"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/sail/zipball/72412b14d6f4e73b71b5f3068bdb064184fbb001",
- "reference": "72412b14d6f4e73b71b5f3068bdb064184fbb001",
+ "url": "https://api.github.com/repos/laravel/sail/zipball/9ec5338d13bdc941a23347cb36385988c525fe02",
+ "reference": "9ec5338d13bdc941a23347cb36385988c525fe02",
"shasum": ""
},
"require": {
@@ -15613,7 +15613,7 @@
"issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail"
},
- "time": "2022-12-12T16:47:37+00:00"
+ "time": "2022-12-14T14:54:21+00:00"
},
{
"name": "mockery/mockery",
@@ -15997,16 +15997,16 @@
},
{
"name": "symfony/yaml",
- "version": "v6.2.0",
+ "version": "v6.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "f2570f21bd4adc3589aa3133323273995109bae0"
+ "reference": "6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/f2570f21bd4adc3589aa3133323273995109bae0",
- "reference": "f2570f21bd4adc3589aa3133323273995109bae0",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3",
+ "reference": "6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3",
"shasum": ""
},
"require": {
@@ -16051,7 +16051,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v6.2.0"
+ "source": "https://github.com/symfony/yaml/tree/v6.2.2"
},
"funding": [
{
@@ -16067,7 +16067,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-25T19:00:27+00:00"
+ "time": "2022-12-14T16:11:27+00:00"
}
],
"aliases": [],
diff --git a/resources/views/navigation-menu.blade.php b/resources/views/navigation-menu.blade.php
index b88a75b6..cedc0620 100644
--- a/resources/views/navigation-menu.blade.php
+++ b/resources/views/navigation-menu.blade.php
@@ -29,7 +29,7 @@
{{ __('Kurs eintragen') }}
-
+
{{ __('Kurs-Termin eintragen') }}
@endif