seeders updated

This commit is contained in:
Benjamin Takats
2022-11-30 15:11:37 +01:00
parent 8f0e818ec9
commit 7683a4039b
22 changed files with 1263 additions and 53 deletions

View File

@@ -1,19 +1,25 @@
<nav x-data="{ open: false }" class="bg-white border-b border-gray-100">
<nav x-data="{ open: false }" class="border-b border-gray-100">
<!-- Primary Navigation Menu -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex">
<!-- Logo -->
<div class="shrink-0 flex items-center">
<a href="{{ route('dashboard') }}">
<x-jet-application-mark class="block h-9 w-auto" />
<a href="{{ route('welcome') }}">
<img class="block h-9 w-auto" src="{{ asset('img/btc-logo-6219386_1280.png') }}" alt="">
</a>
</div>
<!-- Navigation Links -->
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
<x-jet-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
{{ __('Dashboard') }}
<x-jet-nav-link href="/nova/resources/courses/new" target="_blank">
{{ __('Kurs eintragen') }}
</x-jet-nav-link>
<x-jet-nav-link href="{{ route('profile.show') }}" :active="request()->routeIs('profile.show')">
{{ __('Mein Profil') }}
</x-jet-nav-link>
<x-jet-nav-link href="{{ route('welcome') }}" :active="request()->routeIs('welcome')">
{{ __('Mein Profil') }}
</x-jet-nav-link>
</div>
</div>