{{-- Extends layout --}} @extends('front.layouts.app_nosidebar') {{-- Content --}} @section('content')
@component('front.components.item_ribbon',["item"=>$item])@endcomponent

{{ __('Açıklama') }}

{!! $item->item_description !!}

{{ __('Özellikler') }}

@foreach($item->attributes as $attribute)
{{ $attribute->attribute->at_title }}: @if( empty($attribute->attribute_value->atv_value )) {{ $attribute->iat_value }} @else {{ $attribute->attribute_value->atv_value }} @endif
@endforeach

{{ __('İlanı Paylaş') }}

@include('front.components.user_column',['user' => $item->user]) @auth @include('front.components.user_item_message',['item' => $item]) @endauth

{{ __('Son Eklenen Ürünler') }}

    @foreach($latest_items as $item)
  • {{ $item->item_title }}
    {{ __('İlan Detayı') }}{{$item->currency->cur_symbol.$item->item_price}}
  • @endforeach
@endsection