2017-09-15 12:41:49 +02:00

50 lines
1.5 KiB
PHP

@extends('layouts.app')
@section('title', 'Veranstaltungen')
@section('content')
<table class="highlight">
<thead class="centered">
<tr>
<th>Name</th>
<th>Datum</th>
<th>Zeit</th>
<th>Eingetragen</th>
<th></th>
</tr>
</thead>
@foreach ($veranstaltungen as $v)
<tr>
<td>{{ $v->name }}</td>
<td>{{ $v->beginn->format('d.m.Y') }}</td>
<td>{{ $v->beginn->format('H:i') }}</td>
<td class="center">
@if(!$v->ist_eingetragen)
<a href="{{ route('veranstaltung.enter', [$v]) }}">Eintragen</a>
@else
<span class="green-text tooltipped" data-tooltip="Du bist schon eingetragen"><i class="material-icons">check</i></span>
@endif
</td>
<td class="row">
<a class="tooltipped" data-tooltip="Details anzeigen" href="{{ route('veranstaltung.show', [$v]) }}"><i class="material-icons">open_in_browser</i></a>
<a class="tooltipped" data-tooltip="Veranstaltung bearbeiten" href="{{ route('veranstaltung.edit', [$v]) }}"><i class="material-icons">edit</i></a>
<a class="red-text modal-trigger tooltipped" data-tooltip="Veranstaltung löschen" href="#confirmDeletionModal" data-url="{{route('veranstaltung.destroy', $v)}}" data-identifier="{{$v->name}}"><i class="material-icons">delete</i></button>
</td>
</tr>
@endforeach
</table>
@endsection
@php
$fabActions = [
[
'icon' => "add",
'link' => route('veranstaltung.create'),
'color' => "red"
]
];
@endphp
@push('modals')
@include('shared.modals.confirmDeletion', [])
@endpush