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

{{ $blog->title }}

Dibuat pada {{ $blog->created_at->format('d/m/Y') }}

Informasi

{!! $blog->content !!}
@php $callToActions = json_decode($blog->call_to_action); @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