v1.2.0 - You can now create and edit guides

This commit is contained in:
Anders
2020-09-11 12:30:37 +02:00
parent 78ab6be31a
commit cab8ad604c
10 changed files with 56 additions and 14 deletions
@@ -30,9 +30,8 @@
<label hidden id="error" for="errormesseages">Navn findes allerede</label>
<input type="text" name="name" id="title" required>
<div>
<select name="guidesCategryseleted" id="guidesCategory">
<select name="guide_category_id" id="guidesCategory">
<option disabled selected value> -- Vælg en kategori -- </option>
<option value="none">Ingen kategori</option>
@foreach(\App\GuidesCategory::query()->get() as $guideCategory)
<option value="{{ $guideCategory->id }}">{{ $guideCategory->guidesCategoryName }}</option>
@endforeach