@extends('layouts.app') @section('title', $title) @section('meta_description', $description) @section('meta_keywords', $keywords) @section('canonical', request()->fullUrl()) @section('content')

{{ $heading }}

Showing {{ $ringtones->total() }} {{ \Illuminate\Support\Str::plural(strtolower($showingLabel), $ringtones->total()) }}

Back to Home
@forelse ($ringtones as $ringtone) @include('frontend.partials.content-card', ['ringtone' => $ringtone]) @empty

No content found.

@endforelse
@if ($ringtones->hasPages()) @include('frontend.partials.pagination', ['paginator' => $ringtones]) @endif @endsection