SmartCane/laravel_app/resources/views/livewire/projects/mailing-manager-placeholder.blade.php
Martin Folkerts 7de3d6d527 okay
2024-03-19 15:25:21 +01:00

69 lines
3.8 KiB
PHP

<div>
<div class="px-4 sm:px-6 lg:px-8">
<div class="sm:flex sm:flex-col sm:items-center">
<div class="w-full">
<h1 class="text-base font-semibold leading-6 text-gray-900">{{ __('Mailing') }}</h1>
<p class="mt-2 text-sm text-gray-700"></p>
</div>
<div class="mt-4 sm:mt-0 sm:flex sm:justify-between w-full">
<x-search></x-search>
</div>
</div>
<div class="mt-8 flow-root">
<div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div class="inline-block min-w-full py-2 align-middle mb-10">
<div class="relative">
<table class="min-w-full divide-y divide-gray-300">
<thead>
<tr>
<th scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6 lg:pl-8">
Id
</th>
<th scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6 lg:pl-8">@lang('Subject')</th>
<th scope="col"
class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6 lg:pl-8">@lang('Status')</th>
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">#</th>
<th scope="col"
class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">@lang('Attachment')
</th>
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-0">
<span class="sr-only">Edit</span>
</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 bg-white text-gray-700">
@foreach (range(0, 5) as $i)
<tr>
<td class="whitespace-nowrap p-3 text-sm">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
<td class="whitespace-nowrap p-3 text-sm">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
<td class="whitespace-nowrap p-3 text-sm">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
<td class="whitespace-nowrap p-3 text-sm">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
<td class="whitespace-nowrap p-3 text-sm">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
<td class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-0">
<div class="w-full bg-gray-200 rounded-lg">&nbsp;</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>