@extends('website.layouts-inner')
@section('page-body')
<div class="inner-header">
<img src="{{ asset('website/images/img-inner-header-apply.jpg') }}" class="img-responsive"/>
</div>
<br>
<section class="inner-page container">
@foreach($latestPostByCategory as $latestPostByCategory_key => $news)
@if($latestPostByCategory_key < 4)
<div class="col-md-10 col-md-offset-1 news-wrap">
<div class="col-md-4 col-sm-4">
@if($news->featured_image != null)
<img src="/photos/mip/shares/{{$news->featured_image}}" class="img-responsive">
@else
<img src="{{asset('website/images/default.png') }}" class="img-responsive">
@endif
</div>
<div class="col-md-8 col-sm-8">
<div id="newsListTitle text-left">
<a href="{{ route('website/pages', [$news->slug]) }}" title="View Details" alt="View Details" id="newsListLink">
<h3 class="news-list-title">{{$news->title}}</h3>
</a>
<p class="news-list-published">{{$news->published_at}}</p>
</div>
<div id="newsListInfo text-left">
{{$news->excerpt}}...<br>
</div>
</br>
<a href="{{ route('website/pages', [$news->slug]) }}" class="btn btn-red">Continue Reading →</a>
</br></br></br>
</div>
</div>
@endif
@endforeach
<div class="col-md-10 col-md-offset-1">
{!! $latestPostByCategory->links() !!}
</div>
</section>
@stop