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

תוכניות ובקשות

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

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

@elseif($loop->index %2 == 0)

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

@elseif($loop->index %2 != 0 && $loop->index != count($mainContent->boxes()->get())-1 )

{{ $box->title }}

{{ $box->subtitle }}

{!! $box->description !!}

@endif @endforeach @endsection @section('scripts') @endsection