@extends('web.layouts.layout') @section('content') @csrf {{ $product->currentDescription->title ?? "" }} ( #{{ $product->uuid }} ) {{ __('products::products.account_holder') }} {{ $product->user->name ?? "" }} @for($r = 1; $r <= 5; $r++) @if(($product->user->ratings_info->avg_ratings ?? 0) >= $r) @else @endif @endfor ( {{ __('general.reviews_number', ['number' => $product->user->ratings_info->ratings_count ?? 0]) }} ) {{ __('products::products.price') }} : {{ $productCurrentPriceCurrency }} {!! Str::limit($product->currentDescription->description ?? "", 300) !!} {{ __('products::products.platforms') }} @foreach($product->platformNames as $platformName) {{ $platformName }} @endforeach {{ __('products::products.delivery_within', ['hours' => $product->delivery_time_to]) }} {{ __('orders::orders.your_notes') }} {{ __('orders::orders.write_your_notes') }} {{ old('notes', $firstStepData['notes'] ?? '') }} {{ __('orders::orders.coupon') }} {{-- , $firstStepData['coupon'] ?? '' --}} {{ __('orders::orders.apply') }} {{ __('orders::orders.complete_payment') }} {{ __('orders::orders.complete_payment_you_agreed') }} @endsection @push('stack_scripts') @endpush
{{ $product->user->name ?? "" }}
{{ __('products::products.delivery_within', ['hours' => $product->delivery_time_to]) }}