Filter - exclude first 4 results

I have a blog design with the first 4 items being styled differently to the others. I am using this filter to show the first 4 articles:

<?php foreach ($page ->children() ->listed() ->flip() ->filterBy('featured', false) ->limit(4) as $article): ?>

How can I filter to show all other articles excluding the these 4?

$notFeatured = $page ->children() ->listed() ->flip() ->filterBy('featured', false);
$firstFour = $notFeatured->limit(4)
$rest = $notFeatured->not($firstFour);

// or
$rest = $notFeatured->offset(4);
1 Like

Thanks @texnixe. That worked perfectly.