profile-row-item.blade.php 891 B

123456789101112131415161718192021222324252627282930313233
  1. <div {{ $attributes->merge(['class' => "p-0 col-{$size}"]) }}>
  2. <span class="nav-link">
  3. {{-- Icon --}}
  4. @isset($icon)
  5. <i class="{{ $icon }}"></i>
  6. @endisset
  7. {{-- Header --}}
  8. @isset($title)
  9. @if(! empty($url) && $urlTarget === 'title')
  10. <a href="{{ $url }}">{{ $title }}</a>
  11. @else
  12. {{ $title }}
  13. @endif
  14. @endisset
  15. {{-- Text --}}
  16. @isset($text)
  17. <span class="{{ $makeTextWrapperClass() }}"
  18. @isset($textTooltip) title="{{ $textTooltip }}" style="cursor:help;" @endisset>
  19. @if(! empty($url) && $urlTarget === 'text')
  20. <a href="{{ $url }}">{{ $text }}</a>
  21. @else
  22. {{ $text }}
  23. @endif
  24. </span>
  25. @endisset
  26. </span>
  27. </div>