@extends('web.layouts.app') @section('title',$product->name[App::getLocale()]) @section('content')

{{$product->name[App::getLocale()]}}

{{$product->company->company_name}}

( {{\App\Models\Rate::where('product_id',$product->id)->count()}} )

{{$product->price - (($product->price * $product->discount_percent) / 100)}} ريال {{$product->price}} ريال

الكمية المتاحة {{\App\Models\ShopProduct::where('product_id',$product->id)->sum('count')}}


برجاء إدخال الكمية المطلوبة

{!! $product->description[App::getLocale()] !!}

أين اجد المنتج؟
{{-- @if(\Auth::check())--}} {{-- --}} {{-- --}} {{-- --}} {{-- @else--}} {{--

برجاء تسجيل الدخول لكي تتمكن من الطلب

--}} {{-- @endif--}}

{!! $product->description[App::getLocale()] !!}


{!! $product->property->other !!}

بيانات عامة

    @if($product->property && $product->property->capacity)
  • السعة {{$product->property->capacity}} - {{$product->property->capacity_measure}}
  • @endif @if($product->property && $product->property->weight)
  • الوزن {{$product->property->weight}} - {{$product->property->weight_measure}}
  • @endif @if($product->property && $product->property->brightness)
  • اللمعان @if($product->property->brightness == 'half') نصف @elseif($product->property->brightness == 'full') كامل @else ربع @endif
  • @endif
    @if($product->property && $product->property->meter_per_box)
  • متر لكل مربع {{$product->property->meter_per_box}}
  • @endif

ابعاد

    @if($product->property && $product->property->tall)
  • الطول {{$product->property->tall}} - {{$product->property->tall_measure}}
  • @endif @if($product->property && $product->property->width)
  • العرض {{$product->property->width}} - {{$product->property->width_measure}}
  • @endif
    @if($product->property && $product->property->thick)
  • السمك {{$product->property->thick}} - {{$product->property->thick_measure}}
  • @endif @if($product->property && $product->property->height)
  • الإرتفاع {{$product->property->height}} - {{$product->property->height_measure}}
  • @endif

المعلومات الكهربائية

    @if($product->property && $product->property->volte)
  • الجهد الكهربي {{$product->property->volte}}
  • @endif @if($product->property && $product->property->hertz)
  • التردد {{$product->property->hertz}}
  • @endif @if($product->property && $product->property->farad)
  • السعة الكهربائية {{$product->property->farad}}
  • @endif @if($product->property && $product->property->heat)
  • مصدر الحرارة {{$product->property->heat}}
  • @endif @if($product->property && $product->property->watt)
  • الشغل {{$product->property->watt}}
  • @endif
    @if($product->property && $product->property->ampere)
  • التيار الكهربي {{$product->property->ampere}}
  • @endif @if($product->property && $product->property->ohm)
  • المقاومة {{$product->property->ohm}}
  • @endif @if($product->property && $product->property->fesh_type)
  • نوع الفيش {{$product->property->fesh_type}}
  • @endif @if($product->property && $product->property->burnes_numbers)
  • عدد الشعلات {{$product->property->burnes_numbers}}
  • @endif @if($product->property && $product->property->joule)
  • الشغل {{$product->property->joule}}
  • @endif

الإستخدامات

    @foreach($product_usages as $usage)
  • @if($usage->usage == 'out') خارجي @elseif($usage->usage == 'bathroom') حمامات @elseif($usage->usage == 'in') داخلي @elseif($usage->usage == 'wall') حوائط @elseif($usage->usage == 'kitchen') مطابخ @elseif($usage->usage == 'pools') حمامات سباحة @endif
  • @endforeach

شرح كيفية الحساب والقياس

@foreach($measures as $measure) @endforeach

{!! $product->shipping_terms[App::getLocale()] !!}

منتجات مشابهه

@foreach($related_products as $row) @include('web.products.item') @endforeach
@stop @section('script') @stop