@extends('web.layout.app') @section('css') @endsection @section('title','Activities') @section('content')

Activities

@foreach($mainContent->boxes()->get() as $box) @if($loop->index == 0)

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

{{ $box->button_text != null ? $box->button_text : 'DONATE TO OUR BRIDAL FUND'}}
@elseif($loop->index == count($mainContent->boxes()->get())-1 )

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

{{ $box->button_text != null ? $box->button_text : 'DONATE TO OUR BRIDAL FUND'}}
@else

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

{{ $box->button_text != null ? $box->button_text : 'DONATE TO OUR BRIDAL FUND'}}
@endif @endforeach @endsection @section('scripts') @endsection