@extends('web.layout.app')
@section('css')
@endsection
@section('title','About Page')
@section('content')
@foreach($mainContent->boxes()->get() as $box)
@if($loop->index %2 == 0)
{{ $box->title }}
{!! $box->description !!}
@if($loop->index != count($mainContent->boxes()->get())-1 )
@endif
@else
{{ $box->title }}
{{ $box->title }}
@if($loop->index != count($mainContent->boxes()->get())-1 )
@endif
@endif
@endforeach
OUR HISTORY
@foreach($ourHistory->boxes()->get() as $box)
@if($loop->index %2 == 0)
{{ $box->title }}
{{ $box->description }}
@else
{{ $box->title }}
{{ $box->description }}
@endif
@endforeach