@extends('food.default', ['title' => $produto->nome]) @section('content') @section('css') @endsection @csrf {{ $produto->nome }} R$ {{ __moeda($produto->valor_delivery) }} {{ $produto->texto_delivery }} @if(sizeof($produto->adicionaisAtivos) > 0) Selecione os adicionais @foreach($produto->adicionaisAtivos as $a) {{ $a->adicional->nome }} 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) ADICIONAR AO CARRINHO R$ {{ __moeda($produto->valor_delivery) }} @endif @if($produto->categoria) Categoria {{ $produto->categoria->nome }} @endif @if($produto->destaque_delivery) {{ $produto->nome }} esta em destaque em nosso cardápio @endif @if(sizeof($produto->ingredientes) > 0) Ingredientes @foreach($produto->ingredientes as $i) {{ $i->ingrediente }}{{ !$loop->last ? ', ' : '' }} @endforeach @endif @endsection @section('js') @endsection
{{ $produto->texto_delivery }}
Estabelecimento está fechado hoje
Restaurante está fechado hoje
Restaurante abrirá às {{ __hora_pt($funcionamento->inicio) }}
@foreach($produto->ingredientes as $i) {{ $i->ingrediente }}{{ !$loop->last ? ', ' : '' }} @endforeach