@extends('layouts.front') @section('content') @section('css') @endsection @php $home = \App\HomePage::findorFail(1); @endphp

Menú

@if($settings->web_ordering == 0)
{{$settings->web_ordering_msg}}
@endif
@if(isset($close_flag) && $close_flag == 0)

{{$close_msg}}

@endif @if(isset($menu_items) && !empty($menu_items)) @foreach($menu_items as $row)
@if($row->name == 'RESTAURANTE') @php $bgcolor = '#BBDDE6';@endphp @elseif($row->name == 'PANADERÍA') @php $bgcolor = '#BBDDE6';@endphp @elseif($row->name == 'PASTELERÍA') @php $bgcolor = '#BBDDE6';@endphp @elseif($row->name == 'PARA PREPARAR EN CASA') @php $bgcolor = '#BBDDE6';@endphp @endif

{{$row->name}}

@foreach($row->categories as $row) @endforeach
@endforeach @endif
Items Cantidad Total

Explore nuestro menú y comience a agregar artículos a su pedido


Subtotal

Impuesto 0

Domicilio 0

Total

@if($settings->web_ordering == 1)
@if(Auth::guard('customer')->check()) @else Checkout @endif
@endif
Item added to cart
@section('js') @endsection @endsection