@extends('layouts.landing-page') @section('content') @switch($section) @case(1) @livewire('dashboard.home') @break @case(2) @livewire('dashboard.about') @break @case(3) @livewire('dashboard.products') @break @case(4) @livewire('dashboard.cafe-con-causa') @break @case(5) @livewire('dashboard.contact') @break @case(6) @livewire('dashboard.product', ['product' => $product]) @break @case(7) @livewire('client.summary') @break @case(8) @livewire('dashboard.checkout', ['purchase' => $purchase]) @break @case(9) @livewire('dashboard.my-information') @break @case(10) @livewire('auth.customer-registration', ['product' => $product]) @break @default @endswitch @endsection