@extends('hops') @section('main')
@include('inc.navbar')
Home -> {{ __('Hop List') }}Go Back
@if (Auth::user()->isAdmin()) Add Hop
@endif @include('inc.messages') @if (Auth::user()->isAdmin())@endif @foreach ($hops as $hop) @if (Auth::user()->isAdmin()) @endif @endforeach
Hop Name Profile Bittering? Aroma?Admin
{{$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 Edit
@csrf @method('DELETE')
@endsection