@extends('index')
@section('pagination')
@if(count($songs))
@foreach($songs as $song)
@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')