@extends('food.default', ['title' => $produto->nome]) @section('content') @section('css') @endsection
{{ $produto->nome }} @if($produto->destaque_delivery)
⭐ Em Destaque
@endif
@csrf

{{ $produto->nome }}

R$ {{ __moeda($produto->valor_delivery) }}
@if($produto->texto_delivery)
{{ $produto->texto_delivery }}
@endif @if(sizeof($produto->adicionaisAtivos) > 0)
Adicionais disponíveis
@foreach($produto->adicionaisAtivos as $a)
+ R$ {{ __moeda($a->adicional->valor) }}
@endforeach
@endif
Quantidade
@if($funcionamento == null)
@if(\App\Models\MarketPlaceConfig::getSegmentoServico($config))

⚠️ Estabelecimento está fechado hoje

@else

⚠️ Restaurante está fechado hoje

@endif
@endif @if(!\App\Models\MarketPlaceConfig::getSegmentoServico($config)) @if($funcionamento != null && !$funcionamento->aberto)

🕐 Restaurante abrirá às {{ __hora_pt($funcionamento->inicio) }}

@endif @endif @if($funcionamento && $funcionamento->aberto) @endif
    @if($produto->categoria)
  • Categoria: {{ $produto->categoria->nome }}
  • @endif
@if(sizeof($produto->ingredientes) > 0)

🍽️ Ingredientes

@foreach($produto->ingredientes as $i) {{ $i->ingrediente }}{{ !$loop->last ? ', ' : '' }} @endforeach

@endif
@endsection @section('js') @endsection