Skip to content

Instantly share code, notes, and snippets.

@eduPHP
Created September 21, 2025 18:15
Show Gist options
  • Select an option

  • Save eduPHP/6e3f570a926d7355c5fc16d56b368266 to your computer and use it in GitHub Desktop.

Select an option

Save eduPHP/6e3f570a926d7355c5fc16d56b368266 to your computer and use it in GitHub Desktop.
Daily Calendar page
<x-layout>
<x-slot:breadcrumbs>
<x-breadcrumbs.appointments.appointments-breadcrumbs :$for/>
</x-slot:breadcrumbs>
<x-card.wrapper stack>
<x-card>
<x-title>{{ __('Daily Calendar (By Zone & Assignees)') }}</x-title>
<x-card.row class="mx-0 mb-2">
<x-card.column class="md:w-1/2">
<livewire:calendars.partials.zone-filter :wire:key="'zone-filter-'.time()" :$for/>
</x-card.column>
<x-card.column class="md:w-1/2">
<livewire:calendars.partials.grid-results :wire:key="'result-filter-'.time()" />
</x-card.column>
</x-card.row>
<livewire:calendars.user-view :wire:key="'by-user-scheduler-'.time()" cy="calendars-user-view" :$for />
</x-card>
</x-card.wrapper>
</x-layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment