65 lines
3.1 KiB
PHP
65 lines
3.1 KiB
PHP
@extends('layouts.base')
|
|
@section('body')
|
|
@parent
|
|
<livewire:layout-popups />
|
|
@auth
|
|
<livewire:realtime-connection />
|
|
@endauth
|
|
@auth
|
|
<div x-data="{ open: false }" x-cloak>
|
|
<div class="relative z-50 lg:hidden" :class="open ? 'block' : 'hidden'" role="dialog" aria-modal="true">
|
|
<div class="fixed inset-0 bg-black/80"></div>
|
|
<div class="fixed inset-0 flex">
|
|
<div class="relative flex flex-1 w-full mr-16 max-w-56 ">
|
|
<div class="absolute top-0 flex justify-center w-16 pt-5 left-full">
|
|
<button type="button" class="-m-2.5 p-2.5" x-on:click="open = !open">
|
|
<span class="sr-only">Close sidebar</span>
|
|
<svg class="w-6 h-6 text-white" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
|
|
stroke="currentColor" aria-hidden="true">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="flex flex-col px-6 pb-2 overflow-y-auto dark:bg-coolgray-100 gap-y-5 scrollbar">
|
|
<x-navbar />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-56 lg:flex-col">
|
|
<div class="flex flex-col px-4 overflow-y-auto grow gap-y-5 scrollbar">
|
|
<x-navbar />
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="sticky top-0 z-40 flex items-center px-4 py-4 gap-x-6 sm:px-6 lg:hidden">
|
|
<button type="button" class="-m-2.5 p-2.5 dark:text-warning lg:hidden" x-on:click="open = !open">
|
|
<span class="sr-only">Open sidebar</span>
|
|
<svg class="w-6 h-6" xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 24 24">
|
|
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
|
|
stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
|
</svg>
|
|
</button>
|
|
<div class="flex-1 text-xl font-bold leading-6 dark:text-white">Dashboard</div>
|
|
{{-- <a href="#">
|
|
<span class="sr-only">Your profile</span>
|
|
<img class="w-8 h-8 rounded-full bg-gray-50"
|
|
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
|
|
alt="">
|
|
</a> --}}
|
|
</div>
|
|
|
|
<main class="lg:pl-56">
|
|
<div>
|
|
<div class="p-4 sm:px-6 lg:px-8 lg:py-6">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
@endauth
|
|
@endsection
|