permissions and roles added

This commit is contained in:
Benjamin Takats
2022-11-30 16:28:01 +01:00
parent e8edd349f2
commit 7767482f4d
14 changed files with 516 additions and 21 deletions

View File

@@ -17,7 +17,7 @@
</head>
<body class="font-sans antialiased bg-21gray dark">
<x-jet-banner />
<div class="min-h-screen bg-white">
<div class="min-h-screen">
@livewire('navigation-menu')
<!-- Page Heading -->
@if (isset($header))

View File

@@ -96,7 +96,7 @@
</div>
</section>
{{-- FOOTER --}}
<section class="py-10 bg-gray-900">
<section class="sticky bottom-0 py-10 bg-gray-900">
<div class="px-10 mx-auto max-w-7xl">
<div class="flex flex-col items-center md:flex-row md:justify-between">
<a href="#_">

View File

@@ -1,4 +1,4 @@
<nav x-data="{ open: false }" class="border-b border-gray-100">
<nav x-data="{ open: false }" class="border-b border-gray-100 bg-white">
<!-- 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">
@@ -19,7 +19,7 @@
{{ __('Mein Profil') }}
</x-jet-nav-link>
<x-jet-nav-link href="{{ route('welcome') }}" :active="request()->routeIs('welcome')">
{{ __('Mein Profil') }}
{{ __('Meine Termine') }}
</x-jet-nav-link>
</div>
</div>

View File

@@ -1,8 +1,8 @@
<div class="md:col-span-1 flex justify-between">
<div class="px-4 sm:px-0">
<h3 class="text-lg font-medium text-gray-900">{{ $title }}</h3>
<h3 class="text-lg font-medium text-gray-200">{{ $title }}</h3>
<p class="mt-1 text-sm text-gray-600">
<p class="mt-1 text-sm text-gray-200">
{{ $description }}
</p>
</div>