@foreach ($company['gallery'] as $image)
@php
$isVideo = false;
if (is_string($image['image'])) {
$ext = strtolower(pathinfo(parse_url($image['image'], PHP_URL_PATH), PATHINFO_EXTENSION));
$isVideo = $ext === 'mp4';
}
@endphp
@if ($isVideo)
@else

@endif
@endforeach