|
|
@ -65,7 +65,7 @@ |
|
|
|
<td class="hideable">{{$result->ibu}} </td> |
|
|
|
<td class="hideable">{{$result->ebc}} </td> |
|
|
|
<td class="hideable">{{$result->srm}} </td> |
|
|
|
<td class="hideable">{{$result->pH}} </td> |
|
|
|
<td class="hideable">{{$result->ph}} </td> |
|
|
|
</tr> |
|
|
|
@endforeach |
|
|
|
</tbody> |
|
|
@ -97,7 +97,28 @@ |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
<div role="tabpanel" class="tab-pane fade" id="processes" aria-labelledby="processes-tab"></div> |
|
|
|
<div role="tabpanel" class="tab-pane fade" id="processes" aria-labelledby="processes-tab"> |
|
|
|
<table class="table table-striped table-dark" id="table-programs"> |
|
|
|
<!-- This piece of code is for error messages display purposes --> |
|
|
|
@include('inc.messages') |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th scope="col">@sortablelink('name', 'Beer')</th> |
|
|
|
<th scope="col">Mash</th> |
|
|
|
<th scope="col" class="hideable">Hop Additions</th> |
|
|
|
<th scope="col" class="hideable">Fermentation</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
@foreach ($results as $result) |
|
|
|
<tr> |
|
|
|
<td><a href="/beer/{{$result->beer_id}}">{{$result->name}}</a> </td> |
|
|
|
<td class="hideable">@foreach{{$result->mashes as $mash)Stage: {{$mash['stage']}} at {{$mash['temp']}}°C @if($mash['duration'])for {{$mash['duration']}}m@endforeach</td> |
|
|
|
<td class="hideable">{{$result->boil}}m boil with hop additions at @foreach($result->hopadditions as $hopaddition) {{$hopaddition->timing}} @endforeach</td> |
|
|
|
<td class="hideable">Fermentation stuff</td> |
|
|
|
</tr> |
|
|
|
@endforeach |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@endif |
|
|
|
</div> |
|
|
|