Podívali jste se na použití vztahů v Eloquent, měli byste vztah deklarovat ve svých dvou modelech, něco jako:
class SearchPages extends Eloquent {
public function sites()
{
return $this->hasMany('sites');
}
}
Další informace o výmluvnosti a vztazích naleznete v tomto odkazu:http://laravel.com/docs/ 4.2/výmluvný#vztahy