@extends('layout') @section('title') {{ __('translate.Dashboard') }} @endsection @section('body-content')

{{ __('translate.Dashboard') }}

@include('profile.sidebar')
@forelse ($cars as $index => $car)
thumb
{{ $car->total_view }}
@csrf @method('DELETE')
{{ $car?->brand?->name }}

{{ html_decode($car->title) }}

@if($car->owner_name)
{{ __('translate.Owner') }} : {{ html_decode($car->owner_name) }}
@else
{{ __('translate.Listed by') }} : {{ html_decode($car?->dealer?->name) }}
@endif
@empty

{{ __('translate.Wishlist Not Found!') }}

{{ __('translate.Your wishlist is empty, to add new item click the button below') }}

@endforelse
@include('profile.logout')
@endsection @push('js_section') @endpush