->withSubtitles() added

This commit is contained in:
Benjamin Takats
2022-12-17 17:28:46 +01:00
parent ae7426cb1a
commit a932ecc3f0
17 changed files with 234 additions and 173 deletions

View File

@@ -47,6 +47,11 @@ class BitcoinEvent extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -87,14 +92,14 @@ class BitcoinEvent extends Resource
->rules('required', 'string'), ->rules('required', 'string'),
BelongsTo::make(__('Venue'), 'venue', Venue::class) BelongsTo::make(__('Venue'), 'venue', Venue::class)
->searchable(), ->searchable()->showCreateRelationButton()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class) BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) { ->canSee(function ($request) {
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -50,6 +50,11 @@ class BookCase extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -130,7 +135,7 @@ class BookCase extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -49,6 +49,11 @@ class City extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Land: :name', ['name' => $this->country->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -78,7 +83,9 @@ class City extends Resource
->step(0.000001) ->step(0.000001)
->help('<a target="_blank" href="https://www.latlong.net/">https://www.latlong.net/</a>'), ->help('<a target="_blank" href="https://www.latlong.net/">https://www.latlong.net/</a>'),
BelongsTo::make(__('Country'), 'country', Country::class), BelongsTo::make(__('Country'), 'country', Country::class)
->searchable()
->withSubtitles(),
HasMany::make(__('Venues'), 'venues', Venue::class), HasMany::make(__('Venues'), 'venues', Venue::class),
@@ -91,7 +98,8 @@ class City extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()
->withSubtitles(),
]; ];
} }

View File

@@ -43,6 +43,11 @@ class Country extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Code: :code', ['code' => $this->code]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *

View File

@@ -29,6 +29,14 @@ class Course extends Resource
* @var string * @var string
*/ */
public static $title = 'name'; public static $title = 'name';
/**
* The columns that should be searched.
* @var array
*/
public static $search = [
'id',
'name',
];
public static function label() public static function label()
{ {
@@ -40,15 +48,6 @@ class Course extends Resource
return __('Course'); return __('Course');
} }
/**
* The columns that should be searched.
* @var array
*/
public static $search = [
'id',
'name',
];
public static function relatableLecturers(NovaRequest $request, $query, Field $field) public static function relatableLecturers(NovaRequest $request, $query, Field $field)
{ {
if ($field instanceof BelongsTo) { if ($field instanceof BelongsTo) {
@@ -67,6 +66,11 @@ class Course extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -101,7 +105,7 @@ class Course extends Resource
BelongsTo::make(__('Lecturer'), 'lecturer', Lecturer::class) BelongsTo::make(__('Lecturer'), 'lecturer', Lecturer::class)
->searchable() ->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) SelectPlus::make(__('Categories'), 'categories', Category::class)
->usingIndexLabel('name'), ->usingIndexLabel('name'),
@@ -114,7 +118,7 @@ class Course extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -29,17 +29,6 @@ class CourseEvent extends Resource
'course.name', '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() public function title()
{ {
return $this->from.' - '.$this->venue->name.' - '.$this->course->name; return $this->from.' - '.$this->venue->name.' - '.$this->course->name;
@@ -59,6 +48,11 @@ class CourseEvent extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -85,17 +79,18 @@ class CourseEvent extends Resource
->rules('required') ->rules('required')
->displayUsing(fn($value) => $value->asDateTime()), ->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) BelongsTo::make(__('Venue'), 'venue', Venue::class)
->searchable(), ->searchable()->showCreateRelationButton()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class) BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) { ->canSee(function ($request) {
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -76,6 +76,11 @@ class Episode extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *

View File

@@ -27,12 +27,6 @@ class Lecturer extends Resource
* @var string * @var string
*/ */
public static $title = 'name'; public static $title = 'name';
public static function label()
{
return __('Lecturer/Content Creator');
}
/** /**
* The columns that should be searched. * The columns that should be searched.
* @var array * @var array
@@ -42,9 +36,15 @@ class Lecturer extends Resource
'name', 'name',
]; ];
public static function label()
{
return __('Lecturer/Content Creator');
}
public static function relatableTeams(NovaRequest $request, $query, Field $field) 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); $query->where('id', $request->user()->current_team_id);
} }
@@ -60,6 +60,11 @@ class Lecturer extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -103,7 +108,7 @@ class Lecturer extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -50,6 +50,11 @@ class Library extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -81,7 +86,7 @@ class Library extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -56,6 +56,11 @@ class LibraryItem extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -102,7 +107,7 @@ class LibraryItem extends Resource
->options( ->options(
config('languages.languages') config('languages.languages')
) )
->rules('required', 'string'), ->rules('required', 'string')->searchable(),
Tags::make('Tags') Tags::make('Tags')
->type('library_item') ->type('library_item')
@@ -122,7 +127,7 @@ class LibraryItem extends Resource
->rules('nullable', 'string') ->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.'), ->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) BelongsTo::make(__('Episode'), 'episode', Episode::class)
->nullable() ->nullable()
@@ -135,7 +140,7 @@ class LibraryItem extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -46,6 +46,11 @@ class Meetup extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -68,14 +73,14 @@ class Meetup extends Resource
Text::make('Link') Text::make('Link')
->rules('required', 'string'), ->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) BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) { ->canSee(function ($request) {
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -47,6 +47,11 @@ class MeetupEvent extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -74,14 +79,14 @@ class MeetupEvent extends Resource
->rules('required', 'string'), ->rules('required', 'string'),
BelongsTo::make('Meetup') BelongsTo::make('Meetup')
->searchable(), ->searchable()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class) BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) { ->canSee(function ($request) {
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -47,6 +47,11 @@ class Podcast extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Erstellt von: :name', ['name' => $this->createdBy->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -99,7 +104,7 @@ class Podcast extends Resource
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

View File

@@ -15,7 +15,6 @@ use Laravel\Nova\Http\Requests\NovaRequest;
class User extends Resource class User extends Resource
{ {
/** /**
* The model the resource corresponds to. * The model the resource corresponds to.
* @var class-string<\App\Models\User> * @var class-string<\App\Models\User>

View File

@@ -48,6 +48,11 @@ class Venue extends Resource
->toString())); ->toString()));
} }
public function subtitle()
{
return __('Stadt: :name', ['name' => $this->city->name]);
}
/** /**
* Get the fields displayed by the resource. * Get the fields displayed by the resource.
* *
@@ -73,14 +78,14 @@ class Venue extends Resource
Text::make(__('Street'), 'street') Text::make(__('Street'), 'street')
->rules('required', 'string'), ->rules('required', 'string'),
BelongsTo::make(__('City'), 'city', City::class), BelongsTo::make(__('City'), 'city', City::class)->searchable()->withSubtitles(),
BelongsTo::make(__('Created By'), 'createdBy', User::class) BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) { ->canSee(function ($request) {
return $request->user() return $request->user()
->hasRole('super-admin'); ->hasRole('super-admin');
}) })
->searchable(), ->searchable()->withSubtitles(),
]; ];
} }

244
composer.lock generated
View File

@@ -2524,16 +2524,16 @@
}, },
{ {
"name": "laravel/fortify", "name": "laravel/fortify",
"version": "v1.14.0", "version": "v1.14.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/fortify.git", "url": "https://github.com/laravel/fortify.git",
"reference": "20aeaf31edbf01e21348954088641cdb3d48ebe8" "reference": "04b4b9c20e421c415d0427904a72e08a21bdec27"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/fortify/zipball/20aeaf31edbf01e21348954088641cdb3d48ebe8", "url": "https://api.github.com/repos/laravel/fortify/zipball/04b4b9c20e421c415d0427904a72e08a21bdec27",
"reference": "20aeaf31edbf01e21348954088641cdb3d48ebe8", "reference": "04b4b9c20e421c415d0427904a72e08a21bdec27",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2583,20 +2583,20 @@
"issues": "https://github.com/laravel/fortify/issues", "issues": "https://github.com/laravel/fortify/issues",
"source": "https://github.com/laravel/fortify" "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", "name": "laravel/framework",
"version": "v9.43.0", "version": "v9.44.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b" "reference": "60808a7d9acd53461fd69634c08fc7e0a99fbf98"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/011f2e1d49a11c22519a7899b46ddf3bc5b0f40b", "url": "https://api.github.com/repos/laravel/framework/zipball/60808a7d9acd53461fd69634c08fc7e0a99fbf98",
"reference": "011f2e1d49a11c22519a7899b46ddf3bc5b0f40b", "reference": "60808a7d9acd53461fd69634c08fc7e0a99fbf98",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2769,20 +2769,20 @@
"issues": "https://github.com/laravel/framework/issues", "issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework" "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", "name": "laravel/jetstream",
"version": "v2.12.6", "version": "v2.13.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/jetstream.git", "url": "https://github.com/laravel/jetstream.git",
"reference": "bfed92ddacb22053ddfe1208f098fbd9d9404d89" "reference": "790559c879bfcf3f51df87ba274211e741d6683e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/jetstream/zipball/bfed92ddacb22053ddfe1208f098fbd9d9404d89", "url": "https://api.github.com/repos/laravel/jetstream/zipball/790559c879bfcf3f51df87ba274211e741d6683e",
"reference": "bfed92ddacb22053ddfe1208f098fbd9d9404d89", "reference": "790559c879bfcf3f51df87ba274211e741d6683e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2839,7 +2839,7 @@
"issues": "https://github.com/laravel/jetstream/issues", "issues": "https://github.com/laravel/jetstream/issues",
"source": "https://github.com/laravel/jetstream" "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", "name": "laravel/nova",
@@ -4983,16 +4983,16 @@
}, },
{ {
"name": "openspout/openspout", "name": "openspout/openspout",
"version": "v4.9.0", "version": "v4.10.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/openspout/openspout.git", "url": "https://github.com/openspout/openspout.git",
"reference": "7b0db352e25c83e42d3375f57041a30a1ea9cd2c" "reference": "cbf753126f43095112a099eff23ba4f0a47245eb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/openspout/openspout/zipball/7b0db352e25c83e42d3375f57041a30a1ea9cd2c", "url": "https://api.github.com/repos/openspout/openspout/zipball/cbf753126f43095112a099eff23ba4f0a47245eb",
"reference": "7b0db352e25c83e42d3375f57041a30a1ea9cd2c", "reference": "cbf753126f43095112a099eff23ba4f0a47245eb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -5060,7 +5060,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/openspout/openspout/issues", "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": [ "funding": [
{ {
@@ -5072,7 +5072,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-12-13T07:41:37+00:00" "time": "2022-12-17T07:17:20+00:00"
}, },
{ {
"name": "paragonie/constant_time_encoding", "name": "paragonie/constant_time_encoding",
@@ -10820,16 +10820,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f" "reference": "5a9bd5c543f00157c55face973c149957467db31"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f", "url": "https://api.github.com/repos/symfony/console/zipball/5a9bd5c543f00157c55face973c149957467db31",
"reference": "58f6cef5dc5f641b7bbdbf8b32b44cc926c35f3f", "reference": "5a9bd5c543f00157c55face973c149957467db31",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -10896,7 +10896,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v6.2.1" "source": "https://github.com/symfony/console/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -10912,7 +10912,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-01T13:44:20+00:00" "time": "2022-12-16T15:08:36+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
@@ -11048,16 +11048,16 @@
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/error-handler.git", "url": "https://github.com/symfony/error-handler.git",
"reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9" "reference": "12a25d01cc5273b2445e125d62b61d34db42297e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/b4e41f62c1124378863ff2705158a60da3e4c6b9", "url": "https://api.github.com/repos/symfony/error-handler/zipball/12a25d01cc5273b2445e125d62b61d34db42297e",
"reference": "b4e41f62c1124378863ff2705158a60da3e4c6b9", "reference": "12a25d01cc5273b2445e125d62b61d34db42297e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11099,7 +11099,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code", "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/error-handler/tree/v6.2.1" "source": "https://github.com/symfony/error-handler/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11115,20 +11115,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-01T21:07:46+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
"reference": "9efb1618fabee89515fe031314e8ed5625f85a53" "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9efb1618fabee89515fe031314e8ed5625f85a53", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
"reference": "9efb1618fabee89515fe031314e8ed5625f85a53", "reference": "3ffeb31139b49bf6ef0bc09d1db95eac053388d1",
"shasum": "" "shasum": ""
}, },
"require": { "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", "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher/tree/v6.2.0" "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11198,7 +11198,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-02T09:08:04+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/event-dispatcher-contracts", "name": "symfony/event-dispatcher-contracts",
@@ -11345,16 +11345,16 @@
}, },
{ {
"name": "symfony/html-sanitizer", "name": "symfony/html-sanitizer",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/html-sanitizer.git", "url": "https://github.com/symfony/html-sanitizer.git",
"reference": "28d19124099e860ef52da06ae251e37738b750fe" "reference": "f978fcf5f2d66c66bf9922f8589b9be9a2b9526a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/28d19124099e860ef52da06ae251e37738b750fe", "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/f978fcf5f2d66c66bf9922f8589b9be9a2b9526a",
"reference": "28d19124099e860ef52da06ae251e37738b750fe", "reference": "f978fcf5f2d66c66bf9922f8589b9be9a2b9526a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11394,7 +11394,7 @@
"sanitizer" "sanitizer"
], ],
"support": { "support": {
"source": "https://github.com/symfony/html-sanitizer/tree/v6.2.0" "source": "https://github.com/symfony/html-sanitizer/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11410,20 +11410,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-05-06T15:18:34+00:00" "time": "2022-12-14T10:28:02+00:00"
}, },
{ {
"name": "symfony/http-client", "name": "symfony/http-client",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-client.git", "url": "https://github.com/symfony/http-client.git",
"reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e" "reference": "7054ad466f836309aef511789b9c697bc986d8ce"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-client/zipball/153540b6ed72eecdcb42dc847f8d8cf2e2516e8e", "url": "https://api.github.com/repos/symfony/http-client/zipball/7054ad466f836309aef511789b9c697bc986d8ce",
"reference": "153540b6ed72eecdcb42dc847f8d8cf2e2516e8e", "reference": "7054ad466f836309aef511789b9c697bc986d8ce",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11479,7 +11479,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-client/tree/v6.2.0" "source": "https://github.com/symfony/http-client/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11495,7 +11495,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-14T10:13:36+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/http-client-contracts", "name": "symfony/http-client-contracts",
@@ -11580,16 +11580,16 @@
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac" "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0bbd5a7e81b38f32504399b9199f265505b7bac", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ddf4dd35de1623e7c02013523e6c2137b67b636f",
"reference": "d0bbd5a7e81b38f32504399b9199f265505b7bac", "reference": "ddf4dd35de1623e7c02013523e6c2137b67b636f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11638,7 +11638,7 @@
"description": "Defines an object-oriented layer for the HTTP specification", "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-foundation/tree/v6.2.1" "source": "https://github.com/symfony/http-foundation/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11654,20 +11654,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-04T18:26:13+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404" "reference": "860a0189969b755cd571709bd32313aa8599867a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/860a0189969b755cd571709bd32313aa8599867a",
"reference": "bcbd2ea12fee651a4c8bff4f6f00cce2ac1f8404", "reference": "860a0189969b755cd571709bd32313aa8599867a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11749,7 +11749,7 @@
"description": "Provides a structured process for converting a Request into a Response", "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.2.1" "source": "https://github.com/symfony/http-kernel/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11765,20 +11765,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-06T17:28:26+00:00" "time": "2022-12-16T19:38:34+00:00"
}, },
{ {
"name": "symfony/mailer", "name": "symfony/mailer",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mailer.git", "url": "https://github.com/symfony/mailer.git",
"reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf" "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/a18c3dd41cfcf011e3866802e39b9ae9e541deaf", "url": "https://api.github.com/repos/symfony/mailer/zipball/b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
"reference": "a18c3dd41cfcf011e3866802e39b9ae9e541deaf", "reference": "b355ad81f1d2987c47dcd3b04d5dce669e1e62e6",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11828,7 +11828,7 @@
"description": "Helps sending emails", "description": "Helps sending emails",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/mailer/tree/v6.2.1" "source": "https://github.com/symfony/mailer/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11844,7 +11844,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-06T16:54:23+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/mailgun-mailer", "name": "symfony/mailgun-mailer",
@@ -11913,16 +11913,16 @@
}, },
{ {
"name": "symfony/mime", "name": "symfony/mime",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mime.git", "url": "https://github.com/symfony/mime.git",
"reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0" "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/1e8005a7cbd79fb824ad81308ef2a76592a08bc0", "url": "https://api.github.com/repos/symfony/mime/zipball/8c98bf40406e791043890a163f6f6599b9cfa1ed",
"reference": "1e8005a7cbd79fb824ad81308ef2a76592a08bc0", "reference": "8c98bf40406e791043890a163f6f6599b9cfa1ed",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -11976,7 +11976,7 @@
"mime-type" "mime-type"
], ],
"support": { "support": {
"source": "https://github.com/symfony/mime/tree/v6.2.0" "source": "https://github.com/symfony/mime/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -11992,7 +11992,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-28T12:28:19+00:00" "time": "2022-12-14T16:38:10+00:00"
}, },
{ {
"name": "symfony/options-resolver", "name": "symfony/options-resolver",
@@ -13207,16 +13207,16 @@
}, },
{ {
"name": "symfony/service-contracts", "name": "symfony/service-contracts",
"version": "v3.1.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/service-contracts.git", "url": "https://github.com/symfony/service-contracts.git",
"reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239" "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/925e713fe8fcacf6bc05e936edd8dd5441a21239", "url": "https://api.github.com/repos/symfony/service-contracts/zipball/aac98028c69df04ee77eb69b96b86ee51fbf4b75",
"reference": "925e713fe8fcacf6bc05e936edd8dd5441a21239", "reference": "aac98028c69df04ee77eb69b96b86ee51fbf4b75",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -13232,7 +13232,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "3.1-dev" "dev-main": "3.3-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@@ -13272,7 +13272,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/service-contracts/tree/v3.1.1" "source": "https://github.com/symfony/service-contracts/tree/v3.2.0"
}, },
"funding": [ "funding": [
{ {
@@ -13288,7 +13288,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-05-30T19:18:58+00:00" "time": "2022-11-25T10:21:52+00:00"
}, },
{ {
"name": "symfony/stopwatch", "name": "symfony/stopwatch",
@@ -13354,16 +13354,16 @@
}, },
{ {
"name": "symfony/string", "name": "symfony/string",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "145702685e0d12f81d755c71127bfff7582fdd36" "reference": "863219fd713fa41cbcd285a79723f94672faff4d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/145702685e0d12f81d755c71127bfff7582fdd36", "url": "https://api.github.com/repos/symfony/string/zipball/863219fd713fa41cbcd285a79723f94672faff4d",
"reference": "145702685e0d12f81d755c71127bfff7582fdd36", "reference": "863219fd713fa41cbcd285a79723f94672faff4d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -13420,7 +13420,7 @@
"utf8" "utf8"
], ],
"support": { "support": {
"source": "https://github.com/symfony/string/tree/v6.2.0" "source": "https://github.com/symfony/string/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -13436,20 +13436,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-30T17:13:47+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "c08de62caead8357244efcb809d0b1a2584f2198" "reference": "3294288c335b6267eab14964bf2c46015663d93f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/c08de62caead8357244efcb809d0b1a2584f2198", "url": "https://api.github.com/repos/symfony/translation/zipball/3294288c335b6267eab14964bf2c46015663d93f",
"reference": "c08de62caead8357244efcb809d0b1a2584f2198", "reference": "3294288c335b6267eab14964bf2c46015663d93f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -13518,7 +13518,7 @@
"description": "Provides tools to internationalize your application", "description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/translation/tree/v6.2.0" "source": "https://github.com/symfony/translation/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -13534,7 +13534,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-02T09:08:04+00:00" "time": "2022-12-13T18:04:17+00:00"
}, },
{ {
"name": "symfony/translation-contracts", "name": "symfony/translation-contracts",
@@ -13693,16 +13693,16 @@
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v6.2.1", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "1e7544c8698627b908657e5276854d52ab70087a" "reference": "6168f544827e897f708a684f75072a8c33a5e309"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/1e7544c8698627b908657e5276854d52ab70087a", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6168f544827e897f708a684f75072a8c33a5e309",
"reference": "1e7544c8698627b908657e5276854d52ab70087a", "reference": "6168f544827e897f708a684f75072a8c33a5e309",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -13761,7 +13761,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.2.1" "source": "https://github.com/symfony/var-dumper/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -13777,7 +13777,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-12-03T22:32:58+00:00" "time": "2022-12-14T16:11:27+00:00"
}, },
{ {
"name": "theseer/tokenizer", "name": "theseer/tokenizer",
@@ -14147,16 +14147,16 @@
}, },
{ {
"name": "wireui/wireui", "name": "wireui/wireui",
"version": "v1.17.7", "version": "v1.17.8",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/wireui/wireui.git", "url": "https://github.com/wireui/wireui.git",
"reference": "a103617f9381cac002016be0d88bdac9dc551c7f" "reference": "cde361903acbfd6c09d639374204cb165901ce84"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/wireui/wireui/zipball/a103617f9381cac002016be0d88bdac9dc551c7f", "url": "https://api.github.com/repos/wireui/wireui/zipball/cde361903acbfd6c09d639374204cb165901ce84",
"reference": "a103617f9381cac002016be0d88bdac9dc551c7f", "reference": "cde361903acbfd6c09d639374204cb165901ce84",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -14209,7 +14209,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/wireui/wireui/issues", "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": [ "funding": [
{ {
@@ -14217,7 +14217,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-11-28T17:38:50+00:00" "time": "2022-12-14T03:18:26+00:00"
}, },
{ {
"name": "zbateson/mail-mime-parser", "name": "zbateson/mail-mime-parser",
@@ -15212,16 +15212,16 @@
}, },
{ {
"name": "laravel-lang/lang", "name": "laravel-lang/lang",
"version": "12.7.2", "version": "12.7.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Laravel-Lang/lang.git", "url": "https://github.com/Laravel-Lang/lang.git",
"reference": "839ce5d81cd4a8deda5c09bb74af995371345c5b" "reference": "28e1941e8799b48ee1fdcf64137e64fdfffc763e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/839ce5d81cd4a8deda5c09bb74af995371345c5b", "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/28e1941e8799b48ee1fdcf64137e64fdfffc763e",
"reference": "839ce5d81cd4a8deda5c09bb74af995371345c5b", "reference": "28e1941e8799b48ee1fdcf64137e64fdfffc763e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -15283,7 +15283,7 @@
"type": "open_collective" "type": "open_collective"
} }
], ],
"time": "2022-12-14T13:47:21+00:00" "time": "2022-12-16T20:43:31+00:00"
}, },
{ {
"name": "laravel-lang/publisher", "name": "laravel-lang/publisher",
@@ -15557,16 +15557,16 @@
}, },
{ {
"name": "laravel/sail", "name": "laravel/sail",
"version": "v1.16.4", "version": "v1.16.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/sail.git", "url": "https://github.com/laravel/sail.git",
"reference": "72412b14d6f4e73b71b5f3068bdb064184fbb001" "reference": "9ec5338d13bdc941a23347cb36385988c525fe02"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/72412b14d6f4e73b71b5f3068bdb064184fbb001", "url": "https://api.github.com/repos/laravel/sail/zipball/9ec5338d13bdc941a23347cb36385988c525fe02",
"reference": "72412b14d6f4e73b71b5f3068bdb064184fbb001", "reference": "9ec5338d13bdc941a23347cb36385988c525fe02",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -15613,7 +15613,7 @@
"issues": "https://github.com/laravel/sail/issues", "issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail" "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", "name": "mockery/mockery",
@@ -15997,16 +15997,16 @@
}, },
{ {
"name": "symfony/yaml", "name": "symfony/yaml",
"version": "v6.2.0", "version": "v6.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/yaml.git", "url": "https://github.com/symfony/yaml.git",
"reference": "f2570f21bd4adc3589aa3133323273995109bae0" "reference": "6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/f2570f21bd4adc3589aa3133323273995109bae0", "url": "https://api.github.com/repos/symfony/yaml/zipball/6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3",
"reference": "f2570f21bd4adc3589aa3133323273995109bae0", "reference": "6ed8243aa5f2cb5a57009f826b5e7fb3c4200cf3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -16051,7 +16051,7 @@
"description": "Loads and dumps YAML files", "description": "Loads and dumps YAML files",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/yaml/tree/v6.2.0" "source": "https://github.com/symfony/yaml/tree/v6.2.2"
}, },
"funding": [ "funding": [
{ {
@@ -16067,7 +16067,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-11-25T19:00:27+00:00" "time": "2022-12-14T16:11:27+00:00"
} }
], ],
"aliases": [], "aliases": [],

View File

@@ -29,7 +29,7 @@
<x-jet-nav-link href="/nova/resources/courses" target="_blank"> <x-jet-nav-link href="/nova/resources/courses" target="_blank">
{{ __('Kurs eintragen') }} {{ __('Kurs eintragen') }}
</x-jet-nav-link> </x-jet-nav-link>
<x-jet-nav-link href="/nova/resources/events" target="_blank"> <x-jet-nav-link href="/nova/resources/course-events" target="_blank">
{{ __('Kurs-Termin eintragen') }} {{ __('Kurs-Termin eintragen') }}
</x-jet-nav-link> </x-jet-nav-link>
@endif @endif