@extends('front.layouts.app') @section('title', 'Hospitality Services') @section('content') Hospitality Services {{ strip_tags($descr) ?? 'No description found.' }} @foreach($services as $key => $service) @php $isEven = $key % 2 == 0; @endphp {{ $service->name }} {!! strip_tags(base64_decode($service->description)) !!} @endforeach @endsection
{{ strip_tags($descr) ?? 'No description found.' }}
{!! strip_tags(base64_decode($service->description)) !!}