@extends('layouts.app') @section('content')
My Choreographies
@if(!Auth::guard('groups')->user()->isLocked()) Add

@endif @if(!isset($dances) || count($dances) < 1) No choreographies. Add one? @else @if(!Auth::guard('groups')->user()->isLocked())
Note: Choreographies marked in red are incomplete or require additional information. Please edit or delete marked choreographies and add them again!
@endif
Total payable participation fees: {{Auth::guard('groups')->user()->getTotalCost()}} EUR. This includes only valid choreographies (marked in green). Click here to view the payment details.
{!! \App\AssetManager\AssetPlaceholder::display(\App\AssetManager\AssetPlaceholder::placeholder_payment_details) !!}
{{--

PAYMENT DETAILS - EURO

Unicredit BulBank

IBAN: BG82UNCR70001522834671

BIC: UNCRBGSF

Aleksandar Asenov

Reason for payment:

  • Participation Fee – mOvmnt IDC 2017
  • Hotel accommodation – mOvmnt IDC 2017

CMETКА В ЛЕВА

УниКредит БулБанк

IBAN: BG97UNCR70001522643117

BIC: UNCRBGSF

Александър Асенов Асенов

Основание за плащане:

  • Такса участие - mOvmnt IDC 2017
  • Хотелско настаняване – mOvmnt IDC 2017

--}}

@foreach($dances as $dance) @if(!Auth::guard('groups')->user()->isLocked()) @endif @endforeach
Name choreography Category Style Age group Dancers
{{$dance->name}} {{$dance->category->name}} {{$dance->style->name}} {{$dance->age_group?$dance->age_group->name:'-'}} {{count($dance->participants)}} : @foreach($dance->participants as $dancer) {{$dancer->name}}; @endforeach Edit    Delete
@if(!Auth::guard('groups')->user()->isLocked())
After registering all choreographies and paying the participation fee, please tick the checkbox and click the button to confirm. {{csrf_field()}}
@endif @endif
@stop