Files
cv-roberto/resources/views/frontend/opleidingen.blade.php
Roberto Guagliardo b324c030f4 Initial commit
2025-06-19 02:02:04 +02:00

19 lines
803 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@foreach ($education as $item)
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow space-y-2">
<h3 class="text-xl font-bold text-gray-900 dark:text-white">
{{ $item->opleiding }}
<span class="teitemxt-gray-500 dark:text-gray-400 font-normal"> {{ $item->instituut }}</span>
</h3>
<p class="text-sm text-gray-600 dark:text-gray-300 italic">
{{ \Carbon\Carbon::parse($item->startdatum)->translatedFormat('Y') }}
{{ $item->einddatum ? \Carbon\Carbon::parse($item->einddatum)->translatedFormat('Y') : 'heden' }}
</p>
<div class="text-gray-800 dark:text-gray-100 prose dark:prose-invert max-w-none">
{!! nl2br(e($item->beschrijving)) !!}
</div>
</div>
@endforeach