@extends('dashboard::layouts.app-user-toggling') @section('app-user-content')
@include('dashboard::frontend.partials.button', ['name' => 'hackathons', 'arrow' => true, 'route' => route('app.hackathons')])

"{{ $hackathon->title }}" HACKS

@if($hackathon->is_demo == 0)
@include('hack::frontend.partials.progress', [$progress])
@include('dashboard::partials.session')
@else
@endif @if(!$hacks->isEmpty())
@foreach($hacks as $hack)
{!! $hack->present()->showFinishedOrNothing($hack) !!}

{{ $hack->title }}

{!! $hack->present()->showTeaser($hack) !!}
{!! $hack->present()->showStartOrNotAvailable($hackathon, $hack) !!}
@endforeach
@else

This SelfHackathon is coming soon! Keep calm and stay tuned.

@endif
@endsection