@extends('layouts.app') @section('content')
@include('inc.navbar')
Home -> Beer List -> {{ __('Beer Sheet') }}Go Back

{{$beer->name}}

@if($beer->ibu)@endif @if($beer->ebc)@endif @if($beer->srm)@endif @if($beer->ph)@endif @if($beer->ibu)@endif @if($beer->ebc)@endif @if($beer->srm)@endif @if($beer->ph)@endif
Style ABV % OG FGIBUEBCSRMpH
{{$beer->type}} {{$beer->abv}} {{$beer->og}} {{$beer->fg}} {{$beer->ibu}} {{$beer->ebc}} {{$beer->srm}} {{$beer->ph}}
@foreach ($breweries as $brewery) @endforeach

Brewery

Name City\Region Country
{{$brewery->name}} {{$brewery->place}} {{$brewery->country}}
@if(! ($beer->notes) == "")

Notes

{{$beer->notes}}
@endif @foreach ($grainbills as $bill) @endforeach

Grain Bill ({{$beer->batch}}L Batch)

Grain Amount % of total bill
{{$bill->grain_name}} {{$bill->amount}} {{$bill->grain_bill}}
@foreach ($mashsteps as $mash) @endforeach @foreach ($mashsteps as $mash) @if($mash->stage == 1) @endif @endforeach

Mash Steps

Temp °C Duration Stage
{{$mash->temp}} {{$mash->duration}} {{$mash->stage}}
Boil: {{$mash->boil}} minutes @if($beer->boil_volume)
Boil Volume: {{$beer->boil_volume}}L @endif
@foreach ($hopadditions as $hop) @endforeach

Hop Additions

Name Amount (g) Timing
{{$hop->hop_name}} {{$hop->amount}} {{$hop->timing}}
@foreach ($yeastadditions as $yeast) @endforeach

Yeast

Name Temp °C Duration
{{$yeast->yeast_name}} @if($yeast->altname)or {{$yeast->altname}} @endif {{$yeast->temperature}} {{$yeast->duration}}
@if(! $adjunctadditions->isEmpty()) @foreach ($adjunctadditions as $adjunct) @endforeach

Adjunct Additions

Name Amount Timing
{{$adjunct->adjunct_name}} {{$adjunct->amount}} {{$adjunct->timing}}
@endif
@endsection