@extends('layouts.app') @section('content')
@if(isset($categories) && $categories->isNotEmpty())
@php // Prioritize featured categories for the slider $featuredCategories = $categories->where('featured_item', 1)->take(9); $nonFeaturedCategories = $categories->where('featured_item', 0)->take(9); $sliderCategories = $featuredCategories->merge($nonFeaturedCategories)->chunk(3); @endphp @foreach($sliderCategories as $categoryGroup)
@foreach($categoryGroup->slice(1) as $category) @endforeach
@endforeach
@else

No services available at the moment.

Contact Us
@endif

Dallas VIP: Dallas' Premiere Destination Management Company

Dallas VIP specializes in group event planning. We provide a VIP "hands on" dedicated event coordinator to secure the success of your party. From formulation to finale, Dallas VIP will be there every step of the way to create memories of a lifetime.

Plan Your Event
@php // Fetch active categories and their active children with non-null YouTube URLs $videoCategories = $categories->where('active', true) ->whereNotNull('youtube') ->merge( $categories->where('active', true) ->flatMap(function ($category) { return $category->children()->whereNotNull('youtube')->get(); }) ) ->take(9); // Take up to 9 to allow multiple thumbnails @endphp @if($videoCategories->isNotEmpty())

Discover DallasVIP in Action

@foreach($videoCategories as $index => $category)
@endforeach

{{ $videoCategories->first()->name }}

Video information

{{ $videoCategories->first()->description }}

Additional details

  • High-definition quality
  • Auto-play supported
  • Full-screen option
@endif

Our Exclusive Services

@foreach($categories as $category)
{{ $category->name }}

{{ $category->name }}

{{ \Illuminate\Support\Str::limit(strip_tags($category->description), 100) }}

Discover More
@endforeach
@endsection