@extends('frontend.layouts.master') @section('pageTitle') @lang('site.menu_timeline') @endsection @section('pageBreadCrumb')

@lang('site.menu_timeline')

@endsection @section('pageContent')

@lang('site.timeline_title')

@foreach($timeline as $line) @php $l = json_decode($line->meta_value); if($loop->iteration%3 == 0){ $styleValue = 3; } else if($loop->iteration%2 == 0){ $styleValue = 2; } else{ $styleValue = 1; } @endphp
@if($loop->iteration%2 != 0)
{{$l->y}}
@endif

{{$l->t}}

{{$l->d}}

@if($loop->iteration%2 == 0)
{{$l->y}}
@endif
@endforeach
@endsection