Skip to content

Instantly share code, notes, and snippets.

@eimkasp
Created April 6, 2020 14:12
Show Gist options
  • Save eimkasp/b5288573385d78bbf84ef1978881699d to your computer and use it in GitHub Desktop.
Save eimkasp/b5288573385d78bbf84ef1978881699d to your computer and use it in GitHub Desktop.
<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