@php $livewireViews = [ 'v1-getting-started', 'v1-authentication', 'v1-troubleshooting' ]; @endphp @extends('layouts.app') @section('title','Quick Start') @section('content')
@foreach ($livewireViews as $view) @livewire($view) @endforeach
@endsection