@extends('layouts.app') @section('title', 'OakTix - Nigeria\'s Premier Event Ticketing Platform') @section('content')

Discover Amazing Events Near You

Find and book tickets for concerts, conferences, sports, and more across Nigeria

{{ $stats['events'] ?? 0 }}+

Events

{{ $stats['tickets_sold'] ?? 0 }}+

Tickets Sold

{{ $stats['vendors'] ?? 0 }}+

Vendors

Featured Events

View All
@forelse($featuredEvents as $event)
{{ $event->title }}
{{ $event->category->name }}
{{ $event->title }}

{{ $event->start_date->format('M d, Y') }}

{{ $event->city }}, {{ $event->state }}

@php $minPrice = $event->tickets->min('price'); @endphp @if($minPrice == 0) FREE @else From {{ format_currency($minPrice) }} @endif Get Tickets
@empty

No featured events at the moment.

@endforelse

Browse by Category

@foreach($categories as $category) @endforeach

Upcoming Events

View All
@forelse($upcomingEvents as $event)
{{ $event->title }}
{{ $event->category->name }}
{{ Str::limit($event->title, 40) }}

{{ $event->start_date->format('M d, Y') }}

{{ $event->city }}

View Details
@empty

No upcoming events at the moment.

@endforelse

How It Works

1. Discover

Browse through thousands of events happening across Nigeria

2. Book

Secure your tickets with our safe and easy payment system

3. Attend

Show your QR code at the event and enjoy the experience

Are You an Event Organizer?

Sell tickets online and reach thousands of event-goers across Nigeria

Become a Vendor
@endsection