coolify/resources/views/layouts/subscription.blade.php

17 lines
369 B
PHP
Raw Normal View History

2023-08-29 16:31:46 +02:00
@extends('layouts.base')
@section('body')
@parent
@if (isSubscriptionOnGracePeriod())
2023-09-25 15:48:43 +02:00
<div class="fixed top-[4.5rem] left-4 z-50" id="vue">
2023-08-29 16:31:46 +02:00
<magic-bar></magic-bar>
</div>
<x-navbar />
@else
<x-navbar-subscription />
@endif
<main class="main max-w-screen-2xl">
{{ $slot }}
</main>
@endsection