@extends('admin.layout.master') @section('content')

{{ __('obs.presentation_create') }}

Activity Timeline

@php $current_type = null; @endphp
    @foreach ($timeline as $t) @if ($t['type'] != $current_type)
  • {{ $t['type_title'] }}
  • @endif
  • {!! $t['title'] ?? '' !!}
    @if($t['description'])

    {!! $t['description'] ?? '' !!}

    @endif
  • @php $current_type = $t['type']; @endphp @endforeach
@section('custom_js') @endsection @endsection