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

Your Draft Songs

{{ rand(5, 15) }} Drafts
@for ($i = 1; $i <= 10; $i++) @php $completion = rand(30, 95); $lastEdited = now()->subDays(rand(1, 30)); @endphp
Draft Song {{ $i }}
Last edited: {{ $lastEdited->format('M d, Y') }}
{{ $completion }}% Complete
@endfor

Ready to release your music?

Complete your drafts and share your music with the world. Follow these steps to publish your song:
  1. Finalize your audio track
  2. Add cover artwork
  3. Complete metadata (title, genre, description)
  4. Select your license type
  5. Click "Publish" to release your song

Draft Completion Status

{{ rand(5, 15) }} Drafts in Progress

Average completion: {{ rand(50, 75) }}%
Almost Ready (80%+)
{{ rand(2, 5) }}
In Progress (40-80%)
{{ rand(3, 7) }}
Just Started (<40%)< /div>
{{ rand(1, 4) }}

Draft Insights

  • Oldest draft: {{ now()->subDays(rand(60, 180))->format('M d, Y') }}
  • Most recent edit: {{ now()->subHours(rand(1, 48))->format('M d, H:i') }}
  • {{ rand(1, 3) }} drafts inactive for 30+ days

Recently Edited Drafts

@for ($i = 1; $i <= 5; $i++) @php $hoursAgo = rand(1, 72); $completion = rand(30, 95); @endphp
Draft {{ $i }}
Edited {{ $hoursAgo }} {{ $hoursAgo == 1 ? 'hour' : 'hours' }} ago
{{ $completion }}% complete
@endfor
@endsection