@extends('layouts.premium') @section('content') {{-- Hero --}}
Community Stage

Community Lyrics

Discover lyrics created by artists around the world. Like, copy, and get inspired.

@if(session('success'))
{{ session('success') }}
@endif
@forelse($lyrics as $lyric)
{{ $lyric->style }} {{ $lyric->created_at->diffForHumans() }}

{{ $lyric->theme ?: 'Untitled Track' }}

{{ strtoupper(substr($lyric->user->name ?? 'A', 0, 1)) }}
{{ $lyric->user->name ?? 'Anonymous' }} ยท {{ $lyric->mood }}
{{ $lyric->content }}
@auth @else {{ $lyric->likes()->count() }} @endauth
@empty

The stage is empty!

Be the first to share your lyrics with the world.

@auth Go to My Lyrics @else Get Started @endauth
@endforelse
{{ $lyrics->links() }}
@endsection