@props(['brands', 'language_code']) @php use App\Models\Brand; use App\Services\TranslationService; use App\Services\MediaService; @endphp
@if (count($brands) >= 1) @foreach ($brands as $brand)
@php $brand_img = app(MediaService::class)->dynamic_image($brand->image, 400); @endphp
{{ app(TranslationService::class)->getDynamicTranslation(Brand::class, 'name', $brand->id, $language_code) }}

{{ app(TranslationService::class)->getDynamicTranslation(Brand::class, 'name', $brand->id, $language_code) }}

@endforeach @endif