| 1234567891011121314 |
- <div class="row mb-2">
- <label class="col-form-label small @if(!($right ?? null)) col-md-4 text-md-end @endif">
- {{ $title ?? '' }}
- </label>
- <div class="@if(!($right ?? null)) col-md-8 @endif d-flex align-items-center">
- @if($href ?? null)
- <a href="{{ $href }}" target="{{ $target ?? '_self' }}" class="@isset($classes) {{ implode(' ', $classes) }} @endisset">
- {{ $text ?? $href }}
- </a>
- @else
- <span class="text-muted">—</span>
- @endif
- </div>
- </div>
|