دستهبندی:
{{ $product->category->parent->name ?? '' }}
@if($product->category && $product->category->parent) ، @endif
{{ $product->category->name ?? 'عمومی' }}
@for($i = 1; $i <= 5; $i++)
@endfor
{{ $product->title }}
@if($product->image_path)
@else
@endif
@if($product->video_url)
@endif
@if($product->hasActiveDiscount())
@php
$discountPct = round((($product->price - $product->getActivePrice()) / $product->price) * 100);
@endphp
{{ $discountPct }}%
تخفیف
@endif
دسترسی سریع
ارتباط با استاد
ضمانت بازگشت وجه
نظرات و دیدگاهها
{{ $product->average_rating }}
@for($i = 1; $i <= 5; $i++)
@endfor
براساس {{ $product->comments->count() }} نقد و بررسی
@foreach([5, 4, 3, 2, 1] as $stars)
@php
$count = $product->comments->where('rating', $stars)->count();
$pct = $product->comments->count() > 0 ? ($count / $product->comments->count()) * 100 : 0;
@endphp
{{ $stars }} ستاره
{{ $count }}
@endforeach
@forelse($product->comments as $comment)
@empty
{{ $comment->name }}
@for($i = 1; $i <= 5; $i++)
@endfor
{{ $comment->comment }}
{{ $comment->created_at->diffForHumans() }}هیچ دیدگاهی برای این محصول ثبت نشده است. اولین نفر باشید!
@endforelse
قیمت محصول
@if($product->hasActiveDiscount())
@if($product->video_url)
@endif
{{ number_format($product->price) }} تومان
{{ number_format($product->getActivePrice()) }} تومان
@else
{{ number_format($product->price) }} تومان
@endif
تعداد خرید:
{{ $product->students_count_label ?? 'تعداد دانشجویان' }}:
{{ $product->orders()->where('status', 'completed')->count() + $product->students_count }} دانشجو
{{ $product->language_label ?? 'زبان آموزش' }}:
{{ $product->language }}
@if($product->duration)
{{ $product->duration_label ?? 'مدت زمان آموزش' }}:
{{ $product->duration }}
@endif
{{ $product->chapters_count_label ?? 'تعداد سرفصلها' }}:
{{ $product->chapters_count }} فصل
{{ $product->certificate_label ?? 'نوع گواهی' }}:
{{ $product->certificate }}