@php $about = $pageData['About']; @endphp @extends('front.include.app') @section('content')
image

{{ $service->title }}

@php $mediaUrl = $service->getFirstMediaUrl('services'); $extension = pathinfo($mediaUrl, PATHINFO_EXTENSION); $isVideo = in_array(strtolower($extension), ['mp4', 'mov', 'ogg', 'webm']); @endphp
{{-- Left side: Image or Video --}}
@if ($isVideo)
@else image @endif
{{-- Right side: Title and Description --}}

{{ $service->title }}

{!! $service->description !!}

@endsection @section('script') @endsection