@extends('layouts.app') @section('title', 'De Eventa — We Plan Your Perfect Events') @section('content') @php $testImg = \App\Models\Gallery::first(); if($testImg) { $path = $testImg->image_path; $url = \Illuminate\Support\Facades\Storage::disk('public')->url($path); echo "
Raw path: $path
Generated URL: $url
File exists: " . (\Illuminate\Support\Facades\Storage::disk('public')->exists($path) ? 'YES' : 'NO') . "
"; } @endphp {{-- 1. HERO --}}
')">

Welcome to De Eventa

We Plan Your
Perfect Events

From intimate celebrations to grand occasions — we bring your vision to life with elegance, precision, and unforgettable style.

500+

Events Done

5★

Avg Rating

8+

Years Experience

{{-- 2. ABOUT INTRO --}}

Who We Are

Turning Moments Into
Lifelong Memories

De Eventa is a premier event management company dedicated to creating extraordinary experiences. With meticulous attention to detail, creative vision, and flawless execution — we transform your dream events into breathtaking reality.

Learn More About Us
{{-- 3. EVENT CATEGORIES --}}

What We Do

Our Event Services

@forelse($categories as $cat) @if($cat->image)
{{ $cat->name }}
@else
@endif

{{ $cat->name }}

{{ $cat->description }}

Learn More →
@empty @foreach(['Wedding Event','Birthday Party','Corporate Event','Holud / Mehendi','Custom Event'] as $name)

{{ $name }}

Professional event management tailored to your vision.

@endforeach @endforelse
{{-- 4. PACKAGES PREVIEW --}}

Our Offerings

Choose Your Package

@forelse($packages as $pkg)
@if($pkg->badge) {{ $pkg->badge }} @endif

{{ $pkg->name }}

৳{{ number_format($pkg->price) }}
    @foreach($pkg->features ?? [] as $feature)
  • {{ is_array($feature) ? $feature['feature'] : $feature }}
  • @endforeach
View Details
@empty @foreach(['Basic','Standard','Premium'] as $i => $name)

{{ $name }}

View Details
@endforeach @endforelse
{{-- 5. GALLERY PREVIEW --}}

Our Work

Event Portfolio

@forelse($gallery as $img)
{{ $img->caption }}
@empty @for($i = 0; $i < 8; $i++)
@endfor @endforelse
{{-- 6. CLIENTS --}} @if($clients->count())

Trusted by Leading Companies

@foreach($clients as $client)
@if($client->logo_path) {{ $client->name }} @else {{ $client->name }} @endif
@endforeach
@endif {{-- 7. TESTIMONIALS --}}

What Clients Say

Testimonials

@forelse($reviews as $review)
@for($s = 1; $s <= 5; $s++) @endfor

"{{ $review->review }}"

@if($review->avatar) {{ $review->client_name }} @else
{{ strtoupper(substr($review->client_name, 0, 1)) }}
@endif

{{ $review->client_name }}

@if($review->event_type)

{{ ucfirst($review->event_type) }}

@endif
@empty
Reviews coming soon.
@endforelse
{{-- 8. CHITROKOR PHOTOGRAPHY --}}

Photography Partner

Photography by
Chitrokor

Our dedicated photography brand captures your moments beautifully. Every smile, every tear, every dance — preserved forever in stunning imagery that tells the story of your most precious day.

Explore Photography →
@for($i = 0; $i < 4; $i++)
@endfor
{{-- 9. FINAL CTA --}}

Ready to Begin?

Plan Your Event Today

Let's create something extraordinary together. Tell us about your event and we'll get back to you within 24 hours.

Book Your Event Now
@endsection