@extends('layouts.site')
@section('title', 'Receita')
@section('receitas', 'active')
@section('head')
@endsection
@section('content')
{{ $recipe->title }}
Receitas / {{ $recipe->title }}
Tempo de preparo: {{ $recipe->time_duration }}
Rendimeto: {{ $recipe->yield }} porções
@if ($recipe->url_video != '')
@endif
{{ $recipe->body }}
RECEITAS RELACIONADAS
@foreach ($relateds as $related)
@endforeach
@foreach ($comments as $comment)
{{ $comment->name }}
{{ $comment->message }}
@endforeach
DEIXE SEU COMENTÁRIO
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@stop