@extends('admin.layout.master') @section('title', 'User Manager') @section('content')

View Item Details

Name: {{ $data->name }}
Category: {{ ($data->category)?$data->category->name:'-'}}
Sub Category: {{ ($data->subCategory)?$data->subCategory->name:''}}
description: {!! $data->description !!}
Featurtes & Specs: {!! $data->specs !!}
Terms & Condition: {!! $data->tandc !!}
Address: {!! $data->location !!}
Zipcode: {!! $data->zipcode !!}
Amount: {!! $data->price !!}
Price Per Day: {!! $data->priceperday !!}
Price Per Week: {!! $data->priceperweek !!}
Price Per Month: {!! $data->pricepermonth !!}
Price Condition: {!! $data->pricecondition !!}
Security Deposit: {!! $data->security_deposit !!}
Item Condition: {!! $data->item_condition !!}
Item Feature: {{($data->is_featured )?'Yes':'No'}}
Created Date: {{ date('M d, Y', strtotime($data->created_at)) }}
Status: @if ($data->status) Activated @else De-activated @endif
Item images: @forelse ($data->itemImage as $itemimage) item @empty No Image @endforelse
@endsection