@extends('layouts.pages') @section('head') Hero Video Section @endsection @include('HeroSection.Homestyle') @section('body')
@php $backgroundVideo = $heroVideos->where('is_background', true)->where('is_active', true)->first(); $mainVideos = $heroVideos->where('is_background', false)->where('is_active', true)->sortBy('position')->values(); @endphp @if($backgroundVideo)
@endif @if($mainVideos->count() > 0)

WELCOME TO WARUNG POJOK

@foreach($mainVideos as $index => $video)

{{ $video->title }}

{{ $video->description }}

@if(!$loop->last) @endif @endforeach
@foreach($mainVideos as $video) @endforeach @endif
@endsection