@extends('adminlte::page') @section('title', 'Añadir Restaurante') @section('css') @stop @section('content_header')
@include('components.breadcrumbs', ['items' => ['Restaurantes' => 'restaurantes', 'Crear' => 'active']])

Nuevo Restaurante

@stop @section('content')
@include('components.alerts')
@csrf
{{-- TAB 1: GENERAL --}}
@if(auth()->user()->isAdmin())
@endif
{{-- TAB 2: UBICACIÓN Y CONTACTO --}}
{{-- TAB 3: HORARIOS --}}
@foreach(['lunes', 'martes', 'miercoles', 'jueves', 'viernes', 'sabado', 'domingo'] as $dia)
@endforeach
{{-- TAB 4: SERVICIOS Y REDES --}}
{{-- TAB 5: MULTIMEDIA --}}
@include('components.descripcion_galeria')
@stop @section('js') @stop