@extends('front.layouts.app') @section('title', 'Hospitality Services') @section('content') @foreach($services as $key => $service) @php $isEven = $key % 2 == 0; @endphp
{{ $service->name }}

{{ $service->name }}

{!! strip_tags(base64_decode($service->description)) !!}

@endforeach @endsection