@extends('v2.layout') @section('title', $service->title . ' - GOVI') @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($service->description), 155)) @section('content')
خدمة رقمية

{{ $service->title }}

@if(!empty($service->target_audience))
{{ $service->target_audience }}
@endif

مميزات الخدمة

@php $featuresRaw = $service->features; if (is_string($featuresRaw)) { $decoded = json_decode($featuresRaw, true); $features = is_array($decoded) ? $decoded : []; } elseif (is_array($featuresRaw)) { $features = $featuresRaw; } else { $features = []; } $features = array_values(array_unique(array_filter(array_map(fn($v) => is_string($v) ? trim($v) : (is_scalar($v) ? trim((string)$v) : ''), $features)))); @endphp @if(count($features))
    @foreach($features as $f)
  • {{ $f }}
  • @endforeach
@else
سيتم إتاحة مزايا الخدمة قريباً
@endif

وصف الخدمة

{{ $service->description }}

@endsection