Created
April 6, 2020 14:12
-
-
Save eimkasp/b5288573385d78bbf84ef1978881699d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="input-group mb-3"> | |
<form method="POST" action="{{route('show.student', $student->id)}}"> | |
<select name="student_id" class="custom-select"> | |
<option selected disabled>Pasirinkite vardą</option> | |
@foreach($students as $student) | |
<option value="{{ $student->id }}">{{$student->name . " " . "$student->surname"}}</option> | |
@endforeach | |
</select> | |
<input type="submit" value="Rodyti"> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment