68 lines
4.1 KiB
PHP
68 lines
4.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
|
|
@include('partials.head')
|
|
<body class="font-sans antialiased">
|
|
<div class="flex flex-col min-h-screen bg-gray-100 dark:bg-neutral-900">
|
|
@include('layouts.navigation')
|
|
<!-- Page Content -->
|
|
<main>
|
|
@include('user.partials.background')
|
|
<div class="relative max-w-[120rem] mx-auto sm:px-6 lg:px-8 space-y-6 pt-20 mt-[65px] flex flex-row justify-center md:justify-normal">
|
|
<div class="grid md:grid-flow-col gap-4 w-5/6 flex-row">
|
|
@include('profile.partials.sidebar')
|
|
<div class="md:col-span-2">
|
|
<div class="relative overflow-x-auto rounded-lg w-full">
|
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-white">
|
|
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-pink-700 dark:text-neutral-200">
|
|
<tr>
|
|
<th class="px-6 py-3">Type</th>
|
|
<th class="px-6 py-3">Message</th>
|
|
<th class="px-6 py-3">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($notifications as $notification)
|
|
<tr class="bg-white border-t dark:bg-neutral-950/40 backdrop-blur dark:highlight-white/5 dark:border-pink-700">
|
|
<td class="px-6 py-4">
|
|
{{ $notification->data['type'] ?? '' }}
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
{{ $notification->data['message'] ?? '' }}
|
|
</td>
|
|
<td class="px-6 py-4 flex gap-4">
|
|
<a href="{{ $notification->data['url'] }}" class="inline-block rounded bg-sky-600 pl-[4px] pr-[4px] p-[1px] text-xs font-medium uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-sky-700 focus:bg-sky-600">
|
|
Open
|
|
</a>
|
|
<form method="POST" action="{{ route('profile.notifications.delete') }}">
|
|
@csrf
|
|
@method('delete')
|
|
<input type="hidden" value="{{ $notification->id }}" name="id">
|
|
<button type="submit" class="inline-block rounded bg-rose-600 pl-[4px] pr-[4px] p-[1px] text-xs font-medium uppercase leading-normal text-white transition duration-150 ease-in-out hover:bg-rose-700 focus:bg-rose-600">
|
|
Delete
|
|
</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr class="bg-white border-t dark:bg-neutral-950/40 backdrop-blur dark:highlight-white/5 dark:border-pink-700">
|
|
<td class="px-6 py-4">
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
No entries (╥﹏╥)
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
@include('layouts.footer')
|
|
</div>
|
|
</body>
|
|
</html>
|