2023-08-29 14:31:46 +00:00
|
|
|
@extends('layouts.base')
|
|
|
|
@section('body')
|
2023-09-18 12:41:31 +00:00
|
|
|
<x-modal noSubmit modalId="installDocker">
|
|
|
|
<x-slot:modalBody>
|
|
|
|
<livewire:activity-monitor header="Docker Installation Logs" />
|
|
|
|
</x-slot:modalBody>
|
|
|
|
<x-slot:modalSubmit>
|
|
|
|
<x-forms.button onclick="installDocker.close()" type="submit">
|
|
|
|
Close
|
|
|
|
</x-forms.button>
|
|
|
|
</x-slot:modalSubmit>
|
|
|
|
</x-modal>
|
2023-09-18 09:21:10 +00:00
|
|
|
<main class="min-h-screen hero">
|
|
|
|
<div class="hero-content">
|
|
|
|
{{ $slot }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
@parent
|
2023-08-29 14:31:46 +00:00
|
|
|
@endsection
|