@extends('layouts.app')
@if (count($categories) > 0)
@if (empty(array_diff($allJewelleryCategories, $categories)))
{{-- All specific jewellery categories are selected --}}
@section('title', setting('site.Jewellery_title'))
@section('meta_description', setting('site.Jewellery_description'))
@elseif (in_array(5, $categories))
@section('title', setting('site.watch_title'))
@section('meta_description', setting('site.watch_description'))
@elseif (in_array(72, $categories))
@section('title', setting('site.bracelets_title'))
@section('meta_description', setting('site.bracelets_description'))
@elseif (in_array(79, $categories))
@section('title', setting('site.dress_fancy_title'))
@section('meta_description', setting('site.dress_fancy_description'))
@elseif (in_array(4, $categories))
@section('title', setting('site.earrings_title'))
@section('meta_description', setting('site.earrings_description'))
@elseif (in_array(3, $categories))
@section('title', setting('site.engagement_rings_title'))
@section('meta_description', setting('site.engagement_rings_description'))
@elseif (in_array(73, $categories))
@section('title', setting('site.eternity_rings_title'))
@section('meta_description', setting('site.eternity_rings_description'))
@elseif (in_array(76, $categories))
@section('title', setting('site.gemstone_title'))
@section('meta_description', setting('site.gemstone_description'))
@elseif (in_array(1, $categories))
@section('title', setting('site.pendants_title'))
@section('meta_description', setting('site.pendants_description'))
@else
@section('title', setting('site.Jewellery_title'))
@section('meta_description', setting('site.Jewellery_description'))
@endif
@else
@if (Request::is('branded-items'))
@section('title', setting('site.branded_items_title'))
@section('meta_description', setting('site.branded_items_description'))
@else
@section('title', setting('site.shop_title'))
@section('meta_description', setting('site.shop_description'))
@endif
@endif
@section('content')