Initial commit

This commit is contained in:
Roberto Guagliardo
2025-06-19 02:02:04 +02:00
commit b324c030f4
144 changed files with 18580 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
@foreach ($experience 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->functie }} <span class="text-gray-500 dark:text-gray-400 font-normal">bij {{ $item->werkgever }}</span>
</h3>
<p class="text-sm text-gray-600 dark:text-gray-300 italic">
{{ \Carbon\Carbon::parse($item->startdatum)->translatedFormat('F Y') }}
{{ $item->einddatum ? \Carbon\Carbon::parse($item->einddatum)->translatedFormat('F 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