21 lines
604 B
PHP
21 lines
604 B
PHP
@props([
|
|
'platforms' => [],
|
|
])
|
|
|
|
<div {{ $attributes->class(['app-dev-platforms']) }}>
|
|
@foreach($platforms as $platform)
|
|
<span class="app-dev-platform-pill" title="{{ t($platform['name']) }}">
|
|
<img
|
|
src="{{ asset('assets/img/platforms/' . $platform['logo']) }}"
|
|
class="app-dev-platform-icon"
|
|
alt=""
|
|
width="28"
|
|
height="28"
|
|
loading="lazy"
|
|
decoding="async"
|
|
>
|
|
<span class="app-dev-platform-label">{!! t($platform['label'] ?? $platform['name']) !!}</span>
|
|
</span>
|
|
@endforeach
|
|
</div>
|