Files
ladill-frontdesk/resources/views/frontdesk/partials/reception-quick-actions.blade.php
T
isaaccladandCursor 905d7268e4
Deploy Ladill Frontdesk / deploy (push) Successful in 26s
Use + icon buttons on mobile dashboards.
Sync mobile-header-btn partials, mobile x-btn.create, and update dashboard header actions for consistent mobile FABs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 16:21:58 +00:00

23 lines
740 B
PHP

@props([
'desktopSchedule' => 'Pre-register',
'desktopCheckIn' => 'Check in visitor',
'scheduleLabel' => 'Pre-register visitor',
'checkInLabel' => 'Check in visitor',
])
<div {{ $attributes->merge(['class' => 'flex shrink-0 items-center gap-2']) }}>
@include('partials.mobile-header-btn', [
'href' => route('frontdesk.visits.schedule'),
'label' => $scheduleLabel,
'desktopLabel' => $desktopSchedule,
'variant' => 'outline',
'showDesktopIcon' => false,
])
@include('partials.mobile-header-btn', [
'href' => route('frontdesk.visits.create'),
'label' => $checkInLabel,
'desktopLabel' => $desktopCheckIn,
'variant' => 'primary',
])
</div>