@foreach ($feed as $post)
@if ($post['type'] == 'status')

Status updated on: {{ date('jS M, Y', (strtotime($post['created_time']))) }}

@if (empty($post['story']) === false)

{{ $post['story'] }}

@elseif (empty($post['message']) === false)

{{ $post['message'] }}

@endif @elseif ($post['type'] == 'link')

Link posted on: {{ date('jS M, Y', (strtotime($post['created_time']))) }}

@if (empty($post['name']) === false)

{{ $post['name'] }}

@endif

{{ $post['link'] }}

@elseif ($post['type'] == 'photo')

Photo posted on: {{ date('jS M, Y', (strtotime($post['created_time']))) }}

@if (empty($post['story']) === false)

{{ $post['story'] }}

@elseif (empty($post['message']) === false)

{{ $post['message'] }}

@endif

View photo →

@endif
@endforeach