|
|
@ -17,12 +17,20 @@ |
|
|
|
<form method="post" action="{{ route('adjunctadditions.store') }}"> |
|
|
|
@csrf |
|
|
|
<div class="form-group"> |
|
|
|
<label for="beer_id">Beer ID</label> |
|
|
|
<input type="text" class="form-control" name="beer_id"> |
|
|
|
<label for="beer_id">Beer</label> |
|
|
|
<select> |
|
|
|
@foreach ($beers as $beer) |
|
|
|
<option name="beer_id" value="{{$beer->beer_id}}">{{$beer->name}}</option> |
|
|
|
@endforeach |
|
|
|
</select> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="adjunct_id">Adjunct ID</label> |
|
|
|
<input type="text" class="form-control" name="adjunct_id" > |
|
|
|
<label for="adjunct_id">Adjunct</label> |
|
|
|
<select> |
|
|
|
@foreach ($adjuncts as $adjunct) |
|
|
|
<option name="adjunct_id" value="{{$adjunct->id}}">{{$adjunct->name}}</option> |
|
|
|
@endforeach |
|
|
|
</select> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="amount">Amount</label> |
|
|
@ -33,8 +41,12 @@ |
|
|
|
<input type="text" maxlength="10" class="form-control" name="timing"> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="alternative">Alternative (ID)</label> |
|
|
|
<input type="text" class="form-control" name="alternative"> |
|
|
|
<label for="alternative">Alternative</label> |
|
|
|
<select> |
|
|
|
@foreach ($adjuncts as $adjunct) |
|
|
|
<option name="alternative" value="{{$adjunct->id}}">{{$adjunct->name}}</option> |
|
|
|
@endforeach |
|
|
|
</select> |
|
|
|
</div> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="notes">Notes</label> |
|
|
|