@extends('front_end.template.layout') @section('content')

{{ $workshop->name }}

Pottery Workshop
{{ \Carbon\Carbon::parse($workshop->from_date)->format('d M Y') }} - {{ \Carbon\Carbon::parse($workshop->to_date)->format('d M Y') }} - {{ \Carbon\Carbon::parse($workshop->from_time)->format('H:i') }} - {{ \Carbon\Carbon::parse($workshop->to_time)->format('H:i') }}
Regular price {{ $workshop->service_price }} AED

by: {{ isset($vendor->stores) && $vendor->stores->first() && isset($vendor->stores->first()->store_name) && $vendor->stores->first()->store_name ? $vendor->stores->first()->store_name : 'N/A' }}

@if (isset($vendor->stores) && $vendor->stores->first() && file_exists(public_path('storage/' . $vendor->stores->first()->logo))) @else @endif

{{ isset($vendor->stores) && $vendor->stores->first() && isset($vendor->stores->first()->store_name) && $vendor->stores->first()->store_name ? $vendor->stores->first()->store_name : 'N/A' }}

{{ isset($vendor->stores) && $vendor->stores->first() && isset($vendor->stores->first()->location) && $vendor->stores->first()->location ? $vendor->stores->first()->location : 'N/A' }}

4.5 @if (isset($vendor->stores) && $vendor->stores->first() && isset($vendor->stores->first()->vendor_id) && !empty($vendor->stores->first()->vendor_id)) View Store @endif

Description

    @foreach ($workshop->features as $feature)
  • @if(isset($feature->image_path) && !empty($feature->image_path)) {{ $feature->name ?? 'No feature name available' }} @endif {{ $feature->name ?? 'No feature name available' }}
  • @endforeach
@if(isset($workshop->feature_image) && file_exists(public_path($workshop->feature_image)))
image
@endif

Shipping and Policies

{!! $workshop->term_and_condition !!}

Location

{{ $workshop->location }}

Review

Based on 6 reviews 234
@auth Write a review @endauth @guest Write a review @endguest

Write A Review

Customer Reviews

@foreach($reviews as $review)
@for ($i = 1; $i <= 5; $i++) @endfor
{{ $review->title }}

{{ $review->comment }}

@endforeach
@endsection