2024-10-13 21:00:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Page;
|
|
|
|
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
|
|
|
|
class Layout extends Component
|
|
|
|
{
|
|
|
|
|
|
|
|
public function __construct(public string $pageClass = '')
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userName(): string
|
|
|
|
{
|
|
|
|
return auth()->user()->firstname . ' ' . auth()->user()->lastname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userAvatar(): string
|
|
|
|
{
|
|
|
|
return auth()->user()->getGravatarUrl();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return <<<'HTML'
|
2024-10-20 21:23:47 +02:00
|
|
|
<div class="grow flex flex-col" @refresh-page.window="$wire.$refresh">
|
2024-10-13 21:00:47 +02:00
|
|
|
<div class="grow bg-gray-900 flex flex-col duration-300 navbar:ml-60">
|
|
|
|
<x-page::header title="{{ session()->get('title') }}">
|
|
|
|
<x-slot:beforeTitle>
|
|
|
|
<a href="#" class="mr-2 lg:hidden" wire:click.prevent="dispatch('toggle-sidebar')">
|
|
|
|
<x-ui::sprite src="menu" class="text-gray-100 w-5 h-5"></x-ui::sprite>
|
|
|
|
</a>
|
|
|
|
</x-slot:beforeTitle>
|
|
|
|
<x-slot:toolbar>
|
|
|
|
{{ $toolbar ?? ''}}
|
|
|
|
</x-slot:toolbar>
|
|
|
|
<x-slot:right>
|
|
|
|
{{ $right ?? '' }}
|
|
|
|
<div class="flex items-center space-x-2">
|
|
|
|
<div class="rounded-full overflow-hidden border-2 border-solid border-gray-300">
|
|
|
|
<img src="{{ $userAvatar() }}" class="w-8 h-8 object-cover" />
|
|
|
|
</div>
|
|
|
|
<div class="text-gray-300"">{{ $userName() }}</div>
|
|
|
|
</div>
|
|
|
|
</x-slot:right>
|
|
|
|
</x-page::header>
|
|
|
|
|
|
|
|
<div class="grow flex flex-col {{$pageClass}}">
|
|
|
|
{{ $slot }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<livewire:page.sidebar :mobile="true" />
|
|
|
|
</div>
|
|
|
|
HTML;
|
|
|
|
}
|
|
|
|
}
|