@props(['destination', 'size' => 'md'])
@php
$isWishlisted = auth()->check() && auth()->user()->hasWishlisted($destination);
$sizes = [
'sm' => 'btn-sm',
'md' => '',
'lg' => 'btn-lg',
];
$sizeClass = $sizes[$size] ?? '';
@endphp
@auth
@else
@endauth
@pushOnce('styles')
@endPushOnce
@pushOnce('scripts')
@endPushOnce