@extends('layouts.app') @section('title', block('services.hero.title_meta', $isRtl ? 'الخدمات' : 'Services')) @php $serviceIllustrations = [ 'personal' => 'assets/img/services/PERSONAL_FINANCING.svg', 'auto' => 'assets/img/services/AUTO_FINANCING.svg', 'mortgage' => 'assets/img/services/MORTGAGE_FINANCING.svg', 'credit-card' => 'assets/img/services/PERSONAL_FINANCING.svg', 'sme' => 'assets/img/services/SME.svg', ]; @endphp @section('content') @forelse($services ?? [] as $index => $service)
@if($index % 2 === 0)
{{ $service->title }}
@else
{{ $service->title }}
@endif
@empty

{{ block('services.list.empty', $isRtl ? 'لا توجد خدمات متاحة حاليًا.' : 'No services available at the moment.') }}

@endforelse @endsection