@extends('layouts.app') @section('content')
@include('inc.navbar')
Home -> {{ __('Hop List') }}Go Back
@if (Auth::user()->isAdmin())
@endif @include('inc.messages') @foreach ($hops as $hop) @endforeach
Hop Name Profile Bittering? Aroma?
{{$hop->name}} {{str_replace(' ,',',',str_replace('"',' ',str_replace(',',', ',str_replace('}', '', str_replace('{','',$hop->profile)))))}} @if($hop->bitter == 1) yes @else no @endif @if($hop->aroma == 1) yes @else no @endif
@endsection