v0.10.6 - Uniformily changed the event name

This commit is contained in:
frederikpyt
2020-08-18 19:09:40 +02:00
parent 4233a35e66
commit 52b42124a1
8 changed files with 23 additions and 82 deletions
@@ -2,28 +2,28 @@
@extends("admin.layout.header")
@section("title")
Events - Vis
Aktiviteter - Vis
@endsection
@section("path")
<a href="" class="text-white">Vis Events</a> /
<a href="" class="text-white">Vis Aktiviteter</a> /
@endsection
@section("content")
<div class="row align-items-center">
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('events.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Event</a>
<a class="btn btn-inline btn-sde-blue mb-0" href="{{ route('events.create') }}"><img src="{{ asset('/images/icons/plus.svg') }}" alt="Create">Opret Aktivitet</a>
<form method="post" action="{{ route("events.store") }}">
@csrf
<input type="text" class="form-controller" id="search" name="search" placeholder="Søg på Evt Navn, Evt Dato"></input>
<input type="text" class="form-controller" id="search" name="search" placeholder="Søg på Navn, Dato"></input>
</form>
</div>
<table class="tbl mt-2">
<tr>
<th>Event Navn</th>
<th>Event Ansvarlig</th>
<th>Event Dato</th>
<th>Aktivitet Navn</th>
<th>Aktivitet Ansvarlig</th>
<th>Aktivitet Dato</th>
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/eye.svg') }}" alt="Show"></th>
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>