You can use the Collection chunk method to group your categories into chunks of 4:
$categories = Category::with('products')->get() // returns an Eloquent collection
->chunk(4); // returns a collection of collections
In the view:
@foreach ($categories as $chunk)
<div class="row">
@foreach ($chunk as $category)
<div class="col-3">
@foreach ($category->products as $product)
// display product
@endforeach
</div> <!-- /col-3 -->
@endforeach
</div> <!-- /row -->
@endforeach