51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
@extends('layouts.app')
|
|
@section('title', 'Veranstaltungen')
|
|
|
|
@section('content')
|
|
<a class="btn btn-link" href="{{ route('veranstaltung.create') }}">Veranstaltung hinzufügen</a>
|
|
|
|
<table class="highlight">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">Name</th>
|
|
<th class="text-center">Datum</th>
|
|
<th class="text-center">Zeit</th>
|
|
<th class="text-center">Eingetragen</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
@foreach ($veranstaltungen as $v)
|
|
<tr >
|
|
<td class="clickable-row" data-href="{{ route('veranstaltung.show', [$v]) }}">{{ $v->name }}</td>
|
|
<td>{{ $v->beginn->format('d.m.Y') }}</td>
|
|
<td>{{ $v->beginn->format('H:i') }}</td>
|
|
<td class="text-center">
|
|
@if(!$v->ist_eingetragen)
|
|
<a class="btn btn-link my-0 py-0" href="{{ route('veranstaltung.enter', [$v]) }}">Eintragen</a>
|
|
@else
|
|
<span class="text-success">✔</span>
|
|
@endif
|
|
</td>
|
|
<td class="row">
|
|
<a class="btn btn-link my-0 py-0" href="{{ route('veranstaltung.edit', [$v]) }}">Bearbeiten</a>
|
|
<a class="btn-flat waves-effect wave-red red-text modal-trigger" 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 |