return $this->projects->where('status', '<', 3);
return $this->projects->where('status', 1);
return $this->projects->filter(function ($item)
{
return $item->status < 3;
});
$this->projects()->where('status', '<', 3)->get()