@php
$workshops = \App\Models\WorkshopsDetailsModel::first(); // Fetch the first row of workshop details
$locale = app()->getLocale(); // Get the current language
@endphp
@if($workshops)
@foreach(range(1, 10) as $i)
@php
$workshopField = "workshop_{$i}_" . ($locale === 'ar' ? 'ar' : 'en'); // Select Arabic or English
$workshopLabel = $workshops->$workshopField ?? null; // Get the correct language
@endphp
@if($workshopLabel)
@endif
@endforeach
@else
{{ __('No workshops available at the moment.') }}
@endif
@error('workshop_details')