v0.12.0 - Fixed pagination
Fixed RolesController.php - Changes "User" to "Bruger" Added æøåÆØÅ to roles pattern Fixed bugs/mistakes
This commit is contained in:
@@ -15,7 +15,8 @@
|
||||
@method("put")
|
||||
<label for="name_first">Vaskemaskine Navn:</label>
|
||||
<label hidden id="error" for="errormesseages">Vaskemaskinen med den lokation findes allerede</label>
|
||||
<input type="text" name="name" id="name" max="60" value="{{$machine->name}}" required>
|
||||
<input type="text" name="name" id="name" max="60" placeholder="Vaskemaskine nr. 1" value="{{$machine->name}}" required>
|
||||
<label for="location_id">Lokation:</label>
|
||||
<select class="w-100" name="location_id" id="location_id" class="mb-2" required>
|
||||
<option disabled> -- Vælg Lokation -- </option>
|
||||
@foreach($locations as $location)
|
||||
|
||||
@@ -53,6 +53,9 @@
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
|
||||
{{ $machines->links() }}
|
||||
|
||||
<script>
|
||||
$('#locationID').change(function () {
|
||||
$value = $('#locationID').find(":selected").val();
|
||||
|
||||
Reference in New Issue
Block a user