@foreach ($inhouse_top_categories as $inhouse_top_category)
{{ translate('category') }}

@php $lang = App::getLocale(); $category = App\Models\CategoryTranslation::where('category_id', $inhouse_top_category->id) ->where('lang', $lang) ->first(); @endphp {{ $category ? $category->name : translate('Not Found') }}

{{ single_price($inhouse_top_category->total) }}

@endforeach