@php
// Available row layouts
$layouts = [
[1.8, 0.9, 1.4],
[0.9, 1.7],
[1.1, 0.8, 1.6, 1.0],
[1.6, 1.2, 0.9],
[1.2, 1.2, 1.2],
[1.5, 0.8, 0.8, 1.4],
[1.0, 1.4, 1.0],
];
$images = $galleryImages->values();
$pointer = 0;
@endphp
@while($pointer < $images->count())
@php
// Pick a random layout for each row
$layout = $layouts[array_rand($layouts)];
@endphp
@endwhile