Created
November 2, 2021 04:09
-
-
Save NandoKstroNet/5d58273cbb8e8b608cbdd31702b88ec4 to your computer and use it in GitHub Desktop.
Componente Livewire Content, Curso Laravel Mastery - Bloco 2 em https://laravelmastery.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr> | |
<td class="px-6 py-4 whitespace-nowrap"> | |
<div class="text-sm text-gray-900">{{$content->id}}</div> | |
</td> | |
<td class="px-6 py-4 whitespace-nowrap"> | |
<div class="text-sm text-gray-900">{{$content->title}}</div> | |
</td> | |
<td class="px-6 py-4 whitespace-nowrap"> | |
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800"> | |
{{$content->created_at->format('d/m/Y H:i:s')}} | |
</span> | |
</td> | |
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> | |
<div class="flex"> | |
<a href="{{route('content.edit', $content)}}" | |
class="px-2 py-1 border border-blue-600 rounded mr-2">Editar</a> | |
<livewire:content.delete :content="$content"></livewire:content.delete> | |
</div> | |
</td> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment