@extends('client.layout.master')
@php
use App\Models\Translation;
$locale = app()->getLocale();
@endphp
@section('title', Translation::getValue('products_title', $locale))
@section('content')
@isset($currentCategory)
{{ $currentCategory->{'name_'.$locale} ?? $currentCategory->name_az }}
@else
{{ Translation::getValue('shop_items_title', $locale) }}
@endisset