@if($service->exists)
@endif
Одна emoji — отображается в блоке услуг
@php
$countriesSection = \App\Models\DictSection::where('code','countries')->first();
$tagsSection = \App\Models\DictSection::where('code','service_tags')->first();
$allCountries = $countriesSection
? \App\Models\DictValue::where('section_id',$countriesSection->id)->orderBy('sort_order')->get()
: collect();
$allServiceTags = $tagsSection
? \App\Models\DictValue::where('section_id',$tagsSection->id)->orderBy('sort_order')->get()
: collect();
$selectedTagIds = array_map('intval', old('tags', $service->tags ?? []));
@endphp