@extends('layouts.app') @section('title', __('Timeline').' โ€” '.$patient->full_name) @section('content')

๐Ÿ•˜ {{ $patient->full_name }}

@include('patients._tabs')
@if($events->isEmpty())

{{ __('No activity yet.') }}

@else
@foreach($events as $e)
{{ $e['icon'] }} {{ $e['title'] }} {{ $e['at_human'] }}
{{ $e['detail'] }}
{{ $e['at_local'] }} ยท {{ __('Open') }}
@endforeach
@endif
@endsection