@extends('layouts.dashboard.inface', ['section' => 'developments']) @section('extra-styles') @endsection @php $currentStep = 4; @endphp @section('content') @include('realEstates.v2.fraccionamientos.create.tabs_wizard', [ 'steps' => [ ['title' => 'Datos Generales'], ['title' => 'Configuración'], ['title' => 'Lotes'], ['title' => 'Resumen'], ], 'currentStep' => $currentStep, ]) @switch($currentStep) @case(1) @include('realEstates.v2.fraccionamientos.create.steps.step1') @break @case(2) @include('realEstates.v2.fraccionamientos.create.steps.step2') @break @case(3) @include('realEstates.v2.fraccionamientos.create.steps.step3') @break @case(4) @include('realEstates.v2.fraccionamientos.create.steps.step4') @break @default @break @endswitch @endsection