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

Nuevo Plan

@stop @section('content')
@include('components.alerts')
@csrf
{{-- TAB 1: GENERAL --}}
@if(auth()->user()->isAdmin())
@endif
{{-- TAB 2: DETALLES Y LOGÍSTICA --}}
{{-- TAB 3: UBICACIÓN Y CONTACTO --}}
{{-- TAB 4: CATEGORÍAS Y RELACIONES --}}
@php $hasRelaciones = count($alojamientos) || count($restaurantes) || count($empresas) || count($productores) || count($oficinas); @endphp @if($hasRelaciones)
Relaciones
@if(count($alojamientos))
@endif @if(count($restaurantes))
@endif @if(count($empresas))
@endif @if(count($productores))
@endif @if(count($oficinas))
@endif
@endif
{{-- TAB 5: MULTIMEDIA --}}
@include('components.descripcion_galeria')
@stop @section('js') @stop