@extends('layouts/app') @section('title', 'List of ads saved in section "Favorites"') @section('description', 'www.WebMoto.us – Online Motorcycle Trader! List of ads saved in section "Favorites"!' ) @section('og:url', request()->url()) @section('content')
@if(!$paramsobj->motoadds)

You have no saved ads yet!

@else
@foreach($paramsobj->motoadds as $items)
  • {{ $items->title }}
    @if (strtotime($items->created_at) > strtotime(\Carbon\Carbon::now()->subDays(5))) NEW @endif @if ($items->vip == 1) FEATURED @endif @if ($items->status == 'offline') Archived @endif
    @if($items->favotitle)

    {{ @str_limit($items->favotitle, 100) }}

    @endif
    @if ($items->addgodina) {{ @$items->addgodina }} yr. | @endif @if ($items->addkilometri) {{ @$items->addkilometri }} mi. | @endif @if ($items->addkubatura) {{ @$items->addkubatura }} .cc @endif
    @if(count($items->categoryname->parents) != '0') @if(count($items->categoryname->parents) == '1') {{ array_first($items->categoryname->parents)->name }} | @else @foreach(array_sort_recursive($items->categoryname->parents) as $catsitems) {{ $catsitems->name }} | @endforeach @endif @endif {{ $items->categoryname->name }}
    Seen: {{ $items->visit }} | Parked: {{ $items->favcount }} | Valid: {{ $items->daysleft }}
    @if ($items->promo_price) {{ $items->price }} @if ($items->valuta) {{ @head($items->valuta)->value }} @else $. @endif @endif @if ($items->promo_price) {{ $items->promo_price }} @if ($items->valuta) {{ @head($items->valuta)->value }} @else $. @endif @else {{ $items->price }} @if ($items->valuta) {{ @head($items->valuta)->value }} @else $. @endif @endif
    {{ @$items->imagescount }}{{ @$items->video }}
    @if ($items->vendor_id) @else private seller: @endif

@endforeach @endif
@if(!(bool)$paramsobj->vendorsobj)
You don't have any saved business accounts yet!
@else
@foreach($paramsobj->vendorsobj->vendor as $items)
  • {{ $items->title }}
    @if (strtotime($items->updated_at) > strtotime(\Carbon\Carbon::now()->subDays(30))) NEW @endif @if ($items->vip == 1) FEATURED @endif
    {{--
    --}}
    @if($items->favotitle) {{ @str_limit($items->favotitle, 100) }} @endif
    {{ @$items->imagescount }}
    {{--

    --}} {{--{{ @str_limit($items->description, 150) }}--}} {{--

    --}}
    @if ($items->vendorphone) @endif @if ($items->skype) @endif @if ($items->weburl) @endif @if ($items->vendoremail) @endif
    Seen: {{ $items->visit }} | Saved: {{ $items->favcount }} | {{ $items->locationname }} | 36

@endforeach
{{ $paramsobj->vendorsobj->vendor->appends(request()->input())->links() }}
@endif
@include('layouts.sidebar', ['hotlinks' => true, 'sidemenucats' => false]) @include('layouts.banners', ['banner' => '300x250x1']) @include('layouts.sidebar', ['hotlinks' => false, 'sidemenucats' => true])
@include('layouts.catsbox') @endsection