@include('project/query')
@if($rows) @foreach($rows as $row)

{{get_user($row->user_id, 'name', false)}} @if($row->tasks->count()) {{$row->tasks->count()}} @endif {{$row->name}}

@if(isset($access['edit']) && ($auth_id == $row['created_id'] || $auth_id == $row['user_id'])) @endif @if(isset($access['delete']) && ($auth_id == $row['created_id'] || $auth_id == $row['user_id'])) @endif
@datetime($row->created_at)
@endforeach @endif