@foreach($this->data['products'] as $product)
<div class="flex items-center justify-between pt-4">
<div class="space-y-2">
<p class="font-semibold">{{ $product['name'] }}</p>
<p class="flex items-center text-gray-500">
<x-heroicon-s-calendar class="w-5 h-5 mr-1"/>
Updated: {{ date('d-m-Y H:i', strtotime($product['updated_at'] ?? $product['created_at'])) }}
</p>
</div>
<div>
{{-- TODO: Link to view record or view modal --}}
<x-filament::button>
Edit Product
</x-filament::button>
</div>
</div>
@endforeach
@foreach($this->data['products'] as $product)
<div class="flex items-center justify-between pt-4">
<div class="space-y-2">
<p class="font-semibold">{{ $product['name'] }}</p>
<p class="flex items-center text-gray-500">
<x-heroicon-s-calendar class="w-5 h-5 mr-1"/>
Updated: {{ date('d-m-Y H:i', strtotime($product['updated_at'] ?? $product['created_at'])) }}
</p>
</div>
<div>
{{-- TODO: Link to view record or view modal --}}
<x-filament::button>
Edit Product
</x-filament::button>
</div>
</div>
@endforeach