@extends('layouts.app') @section('title','Home') @php // sample fallbacks if collections not passed $artists = $artists ?? \App\Models\Artist::latest()->take(8)->get(); $categories = $categories ?? \App\Models\Category::all()->take(4); $events = $events ?? \App\Models\Event::latest()->take(4)->get(); @endphp @section('content')
{{-- ================= HERO SECTION ================= --}}
{{-- ================= MEET OUR ARTISTS ================= --}}

Meet Our Featured Artists

Discover from a curated collection of artworks by renowned Indian Artists

@if(isset($featuredArtists) && $featuredArtists->count())
@foreach($featuredArtists as $artist) @endforeach
@else

No featured artists available at the moment.

@endif
@if(isset($featuredExhibitions) && $featuredExhibitions->count())

Featured Exclusive

Discover our highlighted Exclusive curated for art lovers

@foreach($featuredExhibitions as $index => $exhibition)
{{ $exhibition->title }}

{{ $exhibition->title }}

@if(!empty($exhibition->venue))

๐Ÿ“ {{ $exhibition->venue }}

@endif @if($exhibition->start_date || $exhibition->end_date)

๐Ÿ—“ @if($exhibition->start_date) {{ \Carbon\Carbon::parse($exhibition->start_date)->format('d M Y') }} @endif @if($exhibition->start_date && $exhibition->end_date)  โ€“  @endif @if($exhibition->end_date) {{ \Carbon\Carbon::parse($exhibition->end_date)->format('d M Y') }} @else Ongoing @endif

@endif @if(!empty($exhibition->description))

{{ \Str::limit($exhibition->description, 180) }}

@endif View Exclusive โ†’
@endforeach
@endif

Art by Theme


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

@if($aboutCreativity)

{{ $aboutCreativity->title }}

@if($aboutCreativity->media_type === 'video') @else About Creativity @endif

{{ $aboutCreativity->description_1 }}

@if($aboutCreativity->description_2)

{{ $aboutCreativity->description_2 }}

@endif {{ $aboutCreativity->button_text }}
@endif

Client Testimonials

@if($mediaPresences->count())

Media Presence

@foreach($mediaPresences as $media)
{{ $media->title ?? 'Media Logo' }}
@endforeach
@endif @if(!empty($pageContents['home']->content))
{!! $pageContents['home']->content !!}
@endif
@endsection @push('after-header') @endpush @push('footer-scripts') @endpush