@extends('admin/layouts/main') @section('content')
header image

@if($post_detail->image == null) avatar @else avatar @endif    {{$post_detail->title}}

@if($post_detail->description)

Description: {{$post_detail->description}}

@endif

About {{$post_detail->title}}

Type @if($post_detail->type == 1) Food @elseif($post_detail->type == 2) Supplies @elseif($post_detail->type == 3) Community & Services @endif
Category {{$post_detail->category_id->name}}
Sub-Category {{$post_detail->sub_category_id->name}}
Price {{$post_detail->price}}
Is Firm @if($post_detail->is_firm == 1) Yes @elseif($post_detail->is_firm == 0) No @endif
Order Type @if($post_detail->order_type == 1) Available @elseif($post_detail->order_type == 2) Pre-Order @endif
Made Out Of @if($post_detail->made_out_of == 1) Home Kitchen @elseif($post_detail->made_out_of == 2) Commercial @endif
Rate @if($post_detail->rate == 1) Per Hour @elseif($post_detail->rate == 2) Per Full @elseif($post_detail->rate == 3) Rent @elseif($post_detail->rate == 4) Other @endif
Location @if($post_detail->location) {{$post_detail->location}} @else - @endif
Condition Type @if($post_detail->condition_type == 0) UnUsed @elseif($post_detail->condition_type == 1) Used @endif
Weight/Quantity @if($post_detail->weight_quantity) {{$post_detail->weight_quantity}} @else - @endif
Tags
Is Location Visible @if($post_detail->is_location_visible == 1) Yes @elseif($post_detail->is_location_visible == 0) No @endif
Is Free Delivery @if($post_detail->is_free_delivery == 1) Yes @elseif($post_detail->is_free_delivery == 0) No @endif
Is Looking For @if($post_detail->is_looking_for == 1) Yes @elseif($post_detail->is_looking_for == 0) No @endif
Is Facebook Share @if($post_detail->is_fb_share == 1) Yes @elseif($post_detail->is_fb_share == 0) No @endif
Share Count @if($post_detail->share_count) {{$post_detail->share_count}} @else - @endif
Sold To @if($post_detail->sold_to) {{$post_detail->sold->name}} @else - @endif
@stop