@extends('frontend.layouts.main') @section('content') Timeline @foreach($timelines as $timeline) {{ $timeline->title }} {{ substr(strip_tags($timeline->description), 0, 200) }}{{ strlen(strip_tags($timeline->description)) > 200 ? '...' : '' }} Read more {!! $timeline->description !!} @endforeach My Office @foreach($offices as $office) {{ $office->title }} {!! $office->description !!} @endforeach @endsection
{{ substr(strip_tags($timeline->description), 0, 200) }}{{ strlen(strip_tags($timeline->description)) > 200 ? '...' : '' }} Read more
{!! $timeline->description !!}
{!! $office->description !!}