header.blade.php 258 B

123456789101112
  1. @props(['url'])
  2. <tr>
  3. <td class="header">
  4. <a href="{{ $url }}" style="display: inline-block;">
  5. @if (trim($slot) === 'Laravel')
  6. <img src="https://laravel.com/img/notification-logo.png" class="logo" alt="Laravel Logo">
  7. @else
  8. {{ $slot }}
  9. @endif
  10. </a>
  11. </td>
  12. </tr>