@extends('reddnres.layouts.app') @section('title', 'REDD PLUS - Home') @section('meta_description', 'Forests are the backbone of a healthy and sustainable natural environment.') @section('content') @foreach($sliders as $slider) @php $translation = $slider->translations->first(); $imgUrl = $translation && $translation->slider_translation_img ? Storage::url($translation->slider_translation_img) : asset('reddnres/src/Redd-homepage-banner-3.jpg'); $slideUrl = null; if ($slider->slider_url_type === 'EXTERNAL') { $slideUrl = $slider->slider_url; } elseif ($slider->slider_url_type === 'INTERNAL') { $slideUrl = url($slider->slider_url); } elseif ($slider->slider_url_type === 'FILE') { $slideUrl = Storage::url($slider->slider_url_upload); } @endphp {{ $translation->slider_translation_title ?? 'REDD PLUS Malaysia' }} @if($slideUrl) slider_url_type === 'EXTERNAL' ? 'target="_blank"' : '' }}> {{ $slider->slider_url_type === 'EXTERNAL' ? 'LEARN MORE' : 'FIND OUT MORE' }} → @endif @endforeach ❮ ❯ @php $about = $sections['home-about'] ?? null; @endphp @if($about) @php $aboutTrans = $about->translations->first(); @endphp @if($about->article_image) @endif @if($aboutTrans) {{ $aboutTrans->article_translation_title }} {!! $aboutTrans->article_translation_content !!} @endif @endif @php $objectives = $sections['home-objectives'] ?? null; @endphp @if($objectives) @php $objTrans = $objectives->translations->first(); @endphp @if($objectives->article_image) @endif @if($objTrans) {!! $objTrans->article_translation_content !!} @endif @endif @endsection