@extends('frontend.pages.layouts.master') @section('content')
@if(count($records)>0)
@foreach($records as $related_record)
{{$related_record->heading}}
{!! \Illuminate\Support\Str::limit($related_record->post_excerpt,100) !!}
{{$related_record->user->name}} on {{date('M d Y',strtotime($related_record->created_at))}}
@endforeach
@endif
@endsection