15 lines
504 B
PHP
15 lines
504 B
PHP
@inject('Service', 'App\Services\Service')
|
|
|
|
@php
|
|
$digitalTransformationContent = $Service->get('overview_a');
|
|
@endphp
|
|
|
|
<!-- Row for Title -->
|
|
<div class="col-12">
|
|
<h1>{{ $digitalTransformationContent['title'] ?? 'Default Title' }}</h1>
|
|
<p>{{ $digitalTransformationContent['explanation'] ?? 'Default Explanation' }}</p>
|
|
<h3><a href="{{ $digitalTransformationContent['callToActionLink'] ?? '#' }}">{{ $digitalTransformationContent['callToActionText'] ?? 'Default CTA Text' }}</a></h3>
|
|
</div>
|
|
|
|
|