button.blade.php (576B)
1 @props([ 2 'url', 3 'color' => 'primary', 4 'align' => 'center', 5 ]) 6 <table class="action" align="{{ $align }}" width="100%" cellpadding="0" cellspacing="0" role="presentation"> 7 <tr> 8 <td align="{{ $align }}"> 9 <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation"> 10 <tr> 11 <td align="{{ $align }}"> 12 <table border="0" cellpadding="0" cellspacing="0" role="presentation"> 13 <tr> 14 <td> 15 <a href="{{ $url }}" class="button button-{{ $color }}" target="_blank" rel="noopener">{{ $slot }}</a> 16 </td> 17 </tr> 18 </table> 19 </td> 20 </tr> 21 </table> 22 </td> 23 </tr> 24 </table>