@extends('layouts.app') @section('title', $appSettings['home_seo_title'] ?: 'Free Content Download') @section('meta_description', $appSettings['home_seo_description'] ?: 'Browse latest and top downloaded content by category.') @section('meta_keywords', $appSettings['home_seo_keywords'] ?: 'free ringtone, sound effect, wallpaper, meme download') @section('canonical', route('frontend.home')) @section('content') @forelse ($latestByType as $section)

Latest {{ $section['label'] }}

Showing {{ $section['items']->count() }} items View All
@foreach ($section['items'] as $ringtone) @include('frontend.partials.content-card', ['ringtone' => $ringtone]) @endforeach
@empty

Latest Content

No content yet.

@endforelse

Categories

View All
@forelse ($parentCategories as $category)

{{ $category->name }}

@empty

No categories found.

@endforelse
@endsection