@extends('front.layouts.app') @section('content')
@foreach ($pages as $page) @if ($page->slug == 'about-us') {!! $page->description !!} @endif @endforeach
@foreach ($members as $member) @if ($loop->iteration % 2 != 0)
{{--
faculty_left_block
--}}
Sean
{{-- --}}
{{ $member->name }}
{!! $member->description !!}
@else
{{--
faculty_left_block
--}}
Joel
{{-- --}}
{{ $member->name }}
{!! $member->description !!}
@endif @endforeach
@if (!$releases->isEmpty())

See What The Press Says About CLEarly

@foreach ($releases as $index => $release) @endforeach
@endif
course_bottom_line
@include('front.modules.subscribe.index') @include('front.modules.contact.index') @endsection