@extends('layouts.app') @section('content')
Property | Value |
---|---|
Name | {{ $artist->user->name }} |
Home City & Country | {{ $artist->city }}, {{ $artist->country }} |
Birthdate | {{ $artist->birth_date ? $artist->birth_date->isoFormat('Do MMMM Y') : ''}} |
Price Per Hour (USD) | @if($artist->price_per_hour != null) @currency($artist->price_per_hour) @else Not yet defined @endif |
Artist Type | {{ $artist->artist_type ? $artist->artist_type->name : ''}} |
Artist is available on |
@if(!is_null($artist->instagram_link))
Instagram
@endif @if(!is_null($artist->spotify_link)) Spotify @endif @if(!is_null($artist->apple_music_link)) Apple Music @endif @if(!is_null($artist->youtube_link)) YouTube @endif @if(!is_null($artist->soundcloud_link)) Soundcloud @endif |
Genres |
@foreach($artist->genres as $genre)
{{ $genre->name }} @endforeach |
Review | Rating | By | Date & Time |
---|---|---|---|
{{ $review->content }} | {{ $review->rating }} | {{ $review->organizer->user->name }} | {{ $review->created_at->isoFormat('DD-MMM-Y') }} |