@extends('frontend.layouts.master') @section('content')

{{ $wedding->couple_name }}

{{ $wedding->description }}

@if ($wedding->video_based)
{!! $wedding->video !!}
@else
Michael Jessica
@endif
  • Phone
    +01 2312 2143
  • Reservation
    Count: 1,000+
  • City
    NewYork

Our story

Save the date

@foreach ($wedding->stories as $story)
{{ $story->date }}

{{ $story->title }}

@endforeach

collections

Photo gallery

@foreach ($wedding->galleries->chunk(2) as $chunkIndex => $galleryChunk) @if ($chunkIndex % 2 == 0)
@foreach ($galleryChunk as $gallery)
Wedding

{{ $wedding->couple_name }}

@endforeach
@else
@foreach ($galleryChunk as $gallery)
Wedding

{{ $wedding->couple_name }}

@endforeach
@endif @endforeach
@endsection