@extends('layouts.app') @section('title', 'Brands | Products') @section('extrastyles') @endsection @section('content')

{{ $recipe->title }}
@include('flash::message')
@foreach($comments as $comment)
{{ $comment->user->first_name.' '.$comment->user->last_name }}
{!! $comment->comment !!}
@endforeach
@endsection @section('footer') @endsection