@extends('layouts.site') @section('content') @php /**/ [ $name, $email, $phone, $whatsapp, $google_map_url, $addresss, $facebook, $instagram, $twitter, $youtube, $tiktok, ] = getGeneralSettings(); @endphp @php $lang = app()->getLocale(); $name = 'name_' . $lang; $details = 'details_' . $lang; $description = 'description_' . $lang; $question = 'question_' . $lang; $answer = 'answer_' . $lang; $img_alt = 'img_alt_' . $lang; @endphp

{{ $service->$name }}

{{ $service->$details }}

@php $services = \App\Models\Service::where('is_active', 1)->get(); @endphp @if ($services && $tools->count() > 0)

{{ app()->getLocale() == 'ar' ? 'الأدوات المستخدمة' : 'Tools we use' }}

@endif @if ($faqs && $faqs->count() > 0)
@foreach ($faqs as $index => $faq)

{{ $faq->$question }}

{!! html_entity_decode($faq->$answer) !!}

@endforeach
@endif
@endif

{{ app()->getLocale() == 'ar' ? 'هل لديك أى استفسار' : 'Have You Any Question?' }}

{{ app()->getLocale() == 'ar' ? 'أتصل بنا فى أى وقت' : 'Call Any Time' }}

{{ $phone }}

@if (isset($service->upload_file) && !empty($service->upload_file)) @endif
@stop @section('scripts') @stop