@foreach ($lists as $list)
  1. @if($list->active) @else @endif
    {{$list->title}} {{$list->url}}
    {{trans('v4half.feed_last_checked')}} {{isset($list->checked_at) ? $list->checked_at->diffForHumans() : '-'}} | {{trans('v4half.feed_next_check')}} @if(isset($list->checked_at)) @if($list->interval == 'hourly') {{ $list->checked_at->addHour()->diffForHumans()}} @endif @if($list->interval == 'dailly') {{ $list->checked_at->addDay()->diffForHumans()}} @endif @if($list->interval == 'weekly') {{ $list->checked_at->addWeek()->diffForHumans()}} @endif @if($list->interval == 'monthly') {{ $list->checked_at->addMonth()->diffForHumans()}} @endif @endif
  2. @endforeach