@extends('layouts.main') @section('content') @foreach($posts as $post) @if ($loop->index == 2)
@else
@endif @if ($loop->index % 2 == 0)
@endif

{{ $post->title }}

{{ $post->subtitle }}

{!! $post->content !!} @if ($post->button_url != '')

{{ $post->button_value}}

@endif
@if ($loop->index % 2 != 0)
@endif
@endforeach @endsection