mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
Migrate to HTMX (#114)
Dropped Livewire Added HTMX Added Blade code lint Drop Mysql and Redis Migrate to SQLite
This commit is contained in:
20
resources/views/site-settings/index.blade.php
Normal file
20
resources/views/site-settings/index.blade.php
Normal file
@ -0,0 +1,20 @@
|
||||
<x-site-layout :site="$site">
|
||||
<x-slot name="pageTitle">{{ __("Settings") }}</x-slot>
|
||||
|
||||
@include("site-settings.partials.change-php-version")
|
||||
|
||||
@include("site-settings.partials.update-v-host")
|
||||
|
||||
<x-card>
|
||||
<x-slot name="title">{{ __("Delete Site") }}</x-slot>
|
||||
<x-slot name="description">
|
||||
{{ __("Permanently delete the site from server") }}
|
||||
</x-slot>
|
||||
<p>
|
||||
{{ __("Once your site is deleted, all of its files will be deleted from the server.") }}
|
||||
</p>
|
||||
<div class="mt-5">
|
||||
@include("site-settings.partials.delete-site")
|
||||
</div>
|
||||
</x-card>
|
||||
</x-site-layout>
|
Reference in New Issue
Block a user