@extends('admin.layout.master') @section('title', "عرض المنتج") @section('content')

عرض منتج {{$row->title}}

تفاصيل المنتج

{{$row->detail}}

خصائص المنتج

التصنيف : {{$row->category_id ? $row->category->name['ar'] : 'غير مصنف'}}
المكان : {{$row->city_id ? $row->city->name['ar'] : 'غير محدد'}}
رقم الجوال : {{$row->mobile ? $row->mobile : 'غير محدد'}}
اظهار الجوال : {{$row->hide_mobile == 'true' ? 'اخفاء' : 'اظهار'}}
@if($row->ad_type)
نوع الاعلان : {{$row->ad_type == 'buy' ? 'شراء' : 'تنازل'}}
@endif @if($row->year)
سنة الصنع : {{$row->year }}
@endif @if($row->car_status)
سنة الصنع : @if($row->car_status == 'used') مستعمل @elseif($row->car_status == 'accident') حادثة @else جديده @endif
@endif @if($row->installment_destination)
وجهة التقسيط : {{$row->installment_destination }}
@endif @if($row->installment_destination)
وجهة التقسيط : {{$row->installment_destination }}
@endif @if($row->fetis)
نوع الفتيس : {{$row->fetis }}
@endif @if($row->fuel)
نوع الوقود : {{$row->fuel }}
@endif @if($row->double)
دبل : {{$row->double == 'true' ? 'نعم' : 'لا' }}
@endif
السعر : {{$row->price}} ربال
@if($row->determine_price)
تحديد السعر : {{$row->determine_price == 'true' ? 'نعم' : 'لا'}}
@endif
عدد المشاهدات : {{$row->views ? $row->views : 0}}
الحالة : {{$row->status == 'false' ? 'غير مفعل' : 'مفعل'}}

صور المنتج

@foreach(\App\Models\ProductImage::where('product_id', $row->id)->get() as $image) @endforeach
@include('admin.layout.message')

التعليقات

{{--

--}} {{-- --}} {{-- --}} {{-- --}} {{--

--}} @foreach($row->comments as $comment) @endforeach
# الاسم التعليق التحكم
{{$i}} {{$comment->user->name}} {{$comment->body }}
@endsection