@extends('index') @section('pagination') @if(count($songs)) @foreach($songs as $song)
@foreach($song->artists as $artist){!! $artist->name !!}@if(!$loop->last), @endif @endforeach
@if(count($song->genres)) @foreach($song->genres as $genre){{ $genre->name }}@if(!$loop->last), @endif @endforeach @endif
{{ humanTime($song->duration) }}
{{ __('symbol.' . config('settings.currency', 'USD')) }}{{ $song->price }}
@if($song->purchased) @else @endif
@endforeach @else

{{ __('web.NO_RESULTS_FOUND') }}

@endif @stop @section('content')
Genre
Mood
Artist
0 Filters Selected
@yield('pagination')
@endsection