@extends('layouts.frontend') @section('content')
@php $count = 0; @endphp @if(isset($thoughts)) @foreach($thoughts as $thought) @php $count++; @endphp @if($count%2 <> 0)
{{$thought->content}}
  • {{date_format($thought->created_at,'F jS, Y')}}
  • {{$thought->thought_like}}
@else
{{$thought->content}}
  • {{date_format($thought->created_at,'F jS, Y')}}
  • {{$thought->thought_like}}
@endif @endforeach
@endif @if($count < 1)

No Thought Found!

@endif

Thought Categories

Quick Links

@endsection @section("js_after") @endsection