{{-- @include('emails.partials.button', ['url' => ..., 'label' => ...]) The site's primary button (x-ui.button, .btn-primary): neutral-200 fill, black border, bold italic uppercase, black offset shadow. The shadow is built from table cells, not box-shadow (Gmail and Outlook drop it): a black column on the right starting $offset down, and a black row at the bottom starting $offset in. The button cell spans the first two rows, so the black column always matches its height. Uppercased here with the tonos removed, since emails can't run the site's strip-accents script and CSS uppercase would keep the accents. --}} @php $offset = 8; $label = strtr(mb_strtoupper($label), [ 'Ά' => 'Α', 'Έ' => 'Ε', 'Ή' => 'Η', 'Ί' => 'Ι', 'Ό' => 'Ο', 'Ύ' => 'Υ', 'Ώ' => 'Ω', 'ΐ' => 'Ϊ', 'ΰ' => 'Ϋ', ]); $spacer = "font-size:1px;line-height:1px;mso-line-height-rule:exactly;"; @endphp
{{ $label }}