@extends('layouts.app') @section('title') {{$page->title}} @endsection @section('body')
{!!$page->description!!}
@if($page->slug == 'hall-of-fame')
@foreach($fames as $item)
{{date('d F Y',strtotime($item->date))}}

{{$item->name}}

{{strip_tags($item->intro)}}

Read More
@endforeach
@endif @if($page->slug == 'green-policies')
@foreach($policies as $pol)
{{$pol->title}}

{{$pol->title}}

{!!$pol->description!!}
@endforeach
@endif @endsection