> @php > $works = App\Models\Work::orderBy('id', 'DESC')->get(); > @endphp > <div class="timeline row"> > @foreach( $works as $work) > <div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 timeline-item > clip-animation from-top" data-duration="1.5"> > > <div class="timeline-outer"> > > <span class="mini-text">{{ $work->start_date }} - {{ $work->end_date }}</span> > <h5>{{ $work->job_title }} - {{ $work->org_name }}</h5> > <p class="little-p">{!! $work->description !!}</p> > > </div> > </div> > @endforeach > </div>
Can't find the solution after many way to try.