@extends('web_theme::layout.main') @php $title = $product && $product->title ? $product->title . ' | ' . $product->category->name . ' | El DiDi Group' : 'Product Details | El DiDi Group'; $description = $product && $product->short_description ? \Illuminate\Support\Str::limit(strip_tags($product->short_description), 150) : 'Explore product details and specifications from El DiDi Group.'; @endphp @section('title', $title) @section('meta_description', $description) @push('schema') @php $schemas = [\App\Services\SchemaService::product($product), \App\Services\SchemaService::breadcrumb([['name' => 'Home', 'url' => '/'], ['name' => 'Products', 'url' => '/products'], ['name' => $product->category->name ?? 'Category', 'url' => '/category/' . ($product->category->slug ?? '') . '/' . ($product->category->id ?? '')], ['name' => $product->title, 'url' => '/product/' . ($product->category->slug ?? '') . '/' . $product->slug . '/' . $product->id]])]; @endphp @include('schema') @endpush @section('content')

Product Detials



@if (!empty($slider_photos))
@foreach ($slider_photos as $index => $photo)
Slider Image {{ $index + 1 }}
@endforeach
@foreach ($slider_photos as $index => $photo) @endforeach
@endif @endsection @section('pageScripts') @endsection