2023-08-29 14:31:46 +00:00
|
|
|
@extends('layouts.base')
|
|
|
|
|
@section('body')
|
|
|
|
|
@parent
|
2024-03-19 14:37:16 +00:00
|
|
|
|
2024-02-25 21:08:44 +00:00
|
|
|
<livewire:layout-popups />
|
2023-12-11 11:03:32 +00:00
|
|
|
@auth
|
|
|
|
|
<livewire:realtime-connection />
|
|
|
|
|
@endauth
|
2024-03-19 14:37:16 +00:00
|
|
|
<main class="flex gap-2">
|
|
|
|
|
<x-navbar />
|
|
|
|
|
<div class="w-full px-10 pt-4">
|
|
|
|
|
{{ $slot }}
|
|
|
|
|
</div>
|
2023-08-29 14:31:46 +00:00
|
|
|
</main>
|
|
|
|
|
@endsection
|