@if($file !== null)

{{__('dashboard.weather')}}

{{$weather['min_temperature'] . '°' . ' / ' . $weather['max_temperature'] . '°'}}

@endif @if(count($toDo) > 0)

{{__('dashboard.to_do_list')}}

@foreach($toDo as $t) done == 1 ? 'checked' : ''}}> @endforeach
@endif @if(count($comments) > 0)

{{__('dashboard.comments')}}

@foreach($comments as $comment)

{{$comment}}

@endforeach
@endif @if(count($alerts) > 0)

{{__('dashboard.alerts')}}

@foreach($alerts as $alert)

{{$alert}}

@endforeach
@endif