@extends('layouts.master') @section('title', config('app.name') . ' : ' . $promotion->title) @section('content')
Kembali
@php $mainImage = $promotion->images->first(); @endphp @if($mainImage) {{ $promotion->title }} @else Default Image @endif
{{ $promotion->title }}
{!! $promotion->content !!}
Promosi Terakhir
@foreach ($latestPromotions as $promo) @php $promoImage = $promo->images->first(); @endphp
@if($promoImage) {{ $promo->title }} @else Default Image @endif
{{ $promo->title }}
Selengkapnya
@endforeach
@endsection