mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
16 lines
477 B
PHP
16 lines
477 B
PHP
<x-site-layout :site="$site">
|
|
<x-slot name="pageTitle">{{ __("Application") }}</x-slot>
|
|
|
|
@if($site->type == \App\Enums\SiteType::LARAVEL)
|
|
<livewire:application.laravel-app :site="$site" />
|
|
@endif
|
|
|
|
@if($site->type == \App\Enums\SiteType::PHP)
|
|
<livewire:application.php-app :site="$site" />
|
|
@endif
|
|
|
|
@if($site->type == \App\Enums\SiteType::WORDPRESS)
|
|
<livewire:application.wordpress-app :site="$site" />
|
|
@endif
|
|
</x-site-layout>
|