Forms_Laravel/resources/views/forms/index.blade.php

141 lines
6.7 KiB
PHP
Raw Normal View History

2024-07-15 06:24:05 +00:00
<!DOCTYPE html>
<html lang="en">
2024-07-16 11:44:26 +00:00
2024-07-15 06:24:05 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
.dropdown:hover .dropdown-menu {
display: block;
}
2024-07-16 11:44:26 +00:00
2024-07-15 06:24:05 +00:00
.shadow-custom {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
</style>
</head>
2024-07-16 11:44:26 +00:00
<body style="bg-gray-100">
2024-07-15 06:24:05 +00:00
<nav class="bg-white p-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
2024-07-16 11:44:26 +00:00
<a href="{{ url('/') }}" style="color: rgb(103,58,183)"
class="text-3xl font-bold font-sans">LaraForms</a>
2024-07-15 06:24:05 +00:00
<div class="relative dropdown">
<button id="profileMenuButton" class="flex items-center focus:outline-none">
2024-07-16 11:44:26 +00:00
<img src="{{ asset('images/user.png') }}" alt="Profile"
class="w-10 h-10 rounded-full border-2 border-white">
2024-07-15 06:24:05 +00:00
</button>
2024-07-16 11:44:26 +00:00
<div id="profileMenu"
class="dropdown-menu hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-2">
2024-07-15 06:24:05 +00:00
<form method="POST" action="{{ route('logout') }}">
@csrf
<button type="submit" class="block px-4 py-2 text-gray-700 hover:bg-gray-200 w-full text-left">
Logout
</button>
</form>
</div>
</div>
</div>
</nav>
2024-07-16 11:44:26 +00:00
@if (session('success'))
<div class="bg-green-100 border border-green-400 text-green-700 px-4 py-2 rounded relative mt-4" role="alert">
<span class="block sm:inline">{{ session('success') }}</span>
</div>
@endif
@if (session('delete'))
<div class="bg-red-100 border border-red-400 text-red-700 px-4 py-2 rounded relative mt-4" role="alert">
<span class="block sm:inline">{{ session('delete') }}</span>
</div>
@endif
2024-07-15 06:24:05 +00:00
<div class="container mx-auto mt-10">
<div class="flex justify-between mb-6 items-center">
2024-07-16 11:44:26 +00:00
<a href="{{ route('forms.create') }}"
class="inline-block px-6 py-3 text-white font-semibold rounded-md shadow bg-purple-700 hover:bg-purple-900 transition duration-200">Start
a new form</a>
2024-07-15 06:24:05 +00:00
</div>
2024-07-15 12:06:26 +00:00
<h2 class="text-3xl font-semibold text-gray-800 font-sans">Recent Forms</h2>
2024-07-15 06:24:05 +00:00
<br>
<div class="bg-white shadow-custom rounded-lg p-6">
@if ($forms->isEmpty())
<p class="text-gray-600 text-center">No forms available.</p>
@else
<table class="min-w-full bg-white rounded-md overflow-hidden">
<thead class="bg-gray-100">
<tr>
2024-07-16 11:44:26 +00:00
<th
class="py-4 px-6 border-b border-gray-200 text-left text-sm font-semibold text-gray-600">
Form Title</th>
<th
class="py-4 px-6 border-b border-gray-200 text-left text-sm font-semibold text-gray-600">
Created At</th>
<th
class="py-4 px-6 border-b border-gray-200 text-left text-sm font-semibold text-gray-600">
Responses</th>
<th class="py-4 px-6 border-b border-gray-200 text-left text-sm font-semibold text-gray-600">
Status</th>
<th></th>
<th>
</th>
2024-07-15 06:24:05 +00:00
</tr>
</thead>
<tbody>
2024-07-16 11:44:26 +00:00
@foreach ($forms as $form)
2024-07-15 06:24:05 +00:00
<tr class="hover:bg-gray-50 transition duration-150">
<td class="py-4 px-6 border-b border-gray-200">
2024-07-16 11:44:26 +00:00
<a href="{{ route('forms.show', $form) }}"
class="text-blue-600 font-semibold hover:underline">{{ $form->title }}</a>
2024-07-15 06:24:05 +00:00
<p class="text-gray-600">{{ $form->description }}</p>
</td>
2024-07-16 11:44:26 +00:00
<td class="py-4 px-6 border-b border-gray-200">{{ $form->created_at->format('M d, Y') }}
</td>
2024-07-15 06:24:05 +00:00
<td class="py-4 px-6 border-b border-gray-200">
2024-07-16 11:44:26 +00:00
<a href="{{ route('responses.viewResponses', $form) }}"
class="text-blue-500 hover:underline">View Responses</a>
2024-07-15 06:24:05 +00:00
</td>
<td class="py-4 px-6 border-b border-gray-200">
@if ($form->is_published)
Published
@else
Unpublished
@endif
</td>
2024-07-15 12:06:26 +00:00
<td class="py-8 px-6 border-b border-gray-200 flex items-center space-x-10">
2024-07-16 11:44:26 +00:00
@if (!$form->is_published)
<a href="{{ route('forms.edit', $form) }}"
class="text-green-500 hover:underline">Edit</a>
@endif
</td>
<td>
2024-07-16 11:44:26 +00:00
<form action="{{ route('forms.destroy', $form) }}" method="POST"
class="inline-block">
2024-07-15 06:24:05 +00:00
@csrf
@method('DELETE')
<button type="submit" class="text-red-500 hover:underline">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
@endif
</div>
</div>
<script>
document.getElementById('profileMenuButton').addEventListener('click', function() {
document.getElementById('profileMenu').classList.toggle('hidden');
});
2024-07-16 11:44:26 +00:00
setTimeout(function() {
var successMessage = document.getElementById('successMessage');
if (successMessage) {
successMessage.remove();
}
}, 3000);
2024-07-15 06:24:05 +00:00
</script>
</body>
2024-07-16 11:44:26 +00:00
</html>