Files
trafficpumper/resources/views/components/brand-logo.blade.php
T

8 lines
288 B
PHP
Raw Normal View History

2026-08-29 15:53:53 +03:00
@props(['href' => null, 'height' => '44px', 'class' => ''])
@php($content = view('components.brand-logo-images', compact('height', 'class')))
@if($href)
<a href="{{ $href }}" class="tp-brand-logo-link" aria-label="TrafficPumper">{!! $content !!}</a>
@else
{!! $content !!}
@endif