@extends('index') @section('pagination') @foreach ($songs as $index => $song)
{!! $song->title !!}
@if(! $song->pending) @endif
@if($song->approved) {!! $song->title !!} @else {!! $song->title !!} @endif @if($song->pending) @else @if($song->approved) @else @endif @endif {{ $song->plays }} {{ $song->loves }} {{ __('symbol.' . config('settings.currency', 'USD')) }}{{ ($song->plays * \App\Models\Role::getValue('monetization_streaming_rate', 0)) }} {{ __('symbol.' . config('settings.currency', 'USD')) }}{{ $song->sales }}
@endforeach @stop @section('content') @include('artist-management.nav', ['artist' => $artist])
@if(count($songs))

Recent Uploads

@yield('pagination')
Title Status Plays Favs Impression Sales
@endif
@endsection