{{-- resources/views/blog/show.blade.php --}} @extends('templates.blogs') @section('container')

{{ $acara->judul }}

Waktu acara : {{ \Carbon\Carbon::parse($acara->start_time)->format('d-m-Y H:i') }} s.d {{ \Carbon\Carbon::parse($acara->end_time)->format('d-m-Y H:i') }}

Informasi

{!! $acara->deskripsi !!}
@php $callToActions = json_decode($acara->call_to_actions); @endphp @if ($callToActions) @foreach ($callToActions as $cta) @php // Ensure the link is a full URL $link = (preg_match('/^https?:\/\//', $cta->link)) ? $cta->link : 'http://' . $cta->link; @endphp @endforeach @endif
Kembali
@endsection