worked on event blade files.

This commit is contained in:
Vedde 2020-06-29 14:48:31 +02:00
parent 0306717822
commit 7234304496
7 changed files with 19 additions and 79 deletions

View File

@ -95,17 +95,9 @@ class ContactController extends Controller
return Response::detect("contacts.update", [ "contacts" => $contact ]);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
$contact = Contact::find($id);
$contact->delete();
return redirect()->route("contacts.index");
}
public function destroy(Contact $id)
{
$id->delete();
return Response::detect("contacts.destroy");}
}

View File

@ -102,10 +102,10 @@ class EventController extends Controller
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
* @throws \Exception
*/
public function destroy(Event $id)
public function destroy($id)
{
$id->delete();
return Response::detect("events.destroy");
$link = Event::find($id);
$link->delete();
return redirect()->route("events.index");
}
}

View File

@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
Vaskemaskiner - Vis
Aktivitet - Vis
@endsection
@section("path")
<a href="{{ route('events.create') }}" class="text-white">Opret Vaskemaskine</a> /
<a href="{{ route('events.create') }}" class="text-white">Opret Aktivitet</a> /
@endsection
@section("content")

View File

@ -2,30 +2,12 @@
@extends("admin.layout.header")
@section("title")
Vaskemaskiner - Vis
Aktivitet - Fjern
@endsection
@section("path")
<a href="" class="text-white">Vis Vaskemaskiner</a> /
<a href="{{ route('events.destroy') }}" class="text-white"> fjern aktivitet</a>
@endsection
@section("content")
<table class="tbl">
<tr>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
</tr>
<tr>
<td>{Fornavn}</td>
<td>{Efternavn}</td>
<td>{Email}</td>
<td>{TLF}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr>
</table>
@endsection

View File

@ -6,7 +6,7 @@
@endsection
@section("path")
<a href="{{ route("events.index") }}" class="text-white">Vis Events</a> /
<a href="" class="text-white">Vis Events</a> /
@endsection
@section("content")
@ -15,9 +15,9 @@
@csrf
@method("PUT")
<label for="title">Titel:</label>
<input value="{{$link->name}}" type="text" name="title" id="title" required>
<input value="{{$event->name}}" type="text" name="title" id="title" required>
<label for="link">Linket:</label>
<input value="{{$link->link}}" type="text" name="link" id="link" required>
<input value="{{$event->description}}" type="text" name="link" id="link" required>
<input type="submit" class="btn btn-dark text-white" value="Rediger">
</form>
@endsection

View File

@ -6,26 +6,9 @@
@endsection
@section("path")
<a href="" class="text-white">Vis Vaskemaskiner</a> /
<a href="{{ route('events.create') }}" class="text-white">Opret External Link</a> /
@endsection
@section("content")
<table class="tbl">
<tr>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
</tr>
<tr>
<td>{Fornavn}</td>
<td>{Efternavn}</td>
<td>{Email}</td>
<td>{TLF}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr>
</table>
Link blev (ikke) oprettet.
@endsection

View File

@ -6,26 +6,9 @@
@endsection
@section("path")
<a href="" class="text-white">Vis Vaskemaskiner</a> /
<a href="{{ route('events.edit', ["event" => $event]) }}" class="text-white">External link</a> /
@endsection
@section("content")
<table class="tbl">
<tr>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
</tr>
<tr>
<td>{Fornavn}</td>
<td>{Efternavn}</td>
<td>{Email}</td>
<td>{TLF}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr>
</table>
Din link blev (ikke) redigeret.
@endsection