v1.4.0 - Added category search on the app

Added comments
Fixed code
Fixed pagination still being there without using it
This commit is contained in:
Anders
2020-09-22 10:45:27 +02:00
parent 505ed3710b
commit f95318a8f2
24 changed files with 157 additions and 63 deletions
@@ -30,7 +30,7 @@
<label hidden id="error" for="errormesseages">Navn findes allerede</label>
<input type="text" name="name" id="title" required>
<div>
<select name="guide_category_id" id="guidesCategory">
<select name="guide_category_id" id="guidesCategory" required>
<option disabled selected value> -- Vælg en kategori -- </option>
@foreach(\App\GuidesCategory::query()->get() as $guideCategory)
<option value="{{ $guideCategory->id }}">{{ $guideCategory->guidesCategoryName }}</option>