@extends('sitemap.layout')
@section('content')
@foreach($items as $item)
{{route('product-category.show',$item->slug)}}
{{ $item->updated_at->tz('UTC')->toAtomString() }}
weekly
0.8
@endforeach
@if(config('app.xlang'))
@foreach(\App\Models\Xlang::where('is_default', 0)->get() as $lang)
{{route('lang.product-category.show',[$lang->tag,$item->slug])}}
{{ $item->updated_at->tz('UTC')->toAtomString() }}
weekly
0.8
@endforeach
@endif
@endsection