@extends('layouts.app') @section('content')

{{ __('messages.find_what_you_need') }}

{{ __('messages.hero_subtitle') }}

{{ $listingCount ?? 0 }}
Active Listings
{{ $categoryCount ?? 0 }}
Categories
{{ $userCount ?? 0 }}
Users

{{ __('messages.browse_categories') }}

@foreach($categories as $category)
{{ $category->icon ?? '📦' }}
{{ $category->name }}
@endforeach
View all categories →
@if($featuredListings->count())

⭐ Featured Listings

@foreach($featuredListings as $listing)

{{ $listing->title }}

{{ $listing->price ? number_format($listing->price, 0).' '.$listing->currency : 'Free' }}

{{ $listing->city }}

View Details
@endforeach
@endif

{{ __('messages.recent_listings') }}

View all →
@foreach($recentListings as $listing)

{{ $listing->title }}

{{ $listing->price ? number_format($listing->price, 0).' '.$listing->currency : 'Free' }}

{{ $listing->city }}

{{ $listing->created_at->diffForHumans() }}

View
@endforeach

{{ __('messages.sell_something') }}

Post your first listing for free!

@auth Post a Free Ad @else Get Started Free @endauth
@endsection