@foreach ($inhouse_top_brands as $inhouse_top_brand)
@php
$lang = App::getLocale();
$brand = App\Models\BrandTranslation::where('brand_id', $inhouse_top_brand->id)
->where('lang', $lang)
->first();
@endphp
{{ $brand ? $brand->name : translate('Not Found') }}
{{ single_price($inhouse_top_brand->total) }}
@endforeach