@if(count($weather) > 0 && $weather !== "")
{{__('dashboard.weather')}}
{{$weather['min_temperature'] . '°' . ' - ' . $weather['max_temperature'] . '°'}}
@endif @if(count($toDo) > 0)
{{__('dashboard.to_do_list')}}
@foreach($toDo as $t)
done == 1 ? 'checked' : ''}}>
{{$t->description}} @if($t->important == 1)
@endif
@endforeach
@endif