@php
$version = $basicInfo->theme_version;
@endphp
@extends("frontend.layouts.layout-v$version")
@section('pageHeading')
{{ __('Wishlist') }}
@endsection
@section('content')
@includeIf('frontend.partials.breadcrumb', [
'breadcrumb' => $bgImg->breadcrumb,
'title' => !empty($pageHeading) ? $pageHeading->wishlist_page_title : __('Wishlist'),
'subtitle' => __('Wishlist'),
])
@includeIf('frontend.user.side-navbar')
{{ __('Wishlists') }}
| {{ __('Serial') }} |
{{ __('Property title') }} |
{{ __('Action') }} |
@foreach ($wishlists as $item)
@php
$content = DB::table('property_contents')
->where([
['property_id', $item->property_id],
['language_id', $language->id],
])
->select('title', 'slug')
->first();
@endphp
@if (!is_null($content))
| #{{ $loop->iteration }} |
{{ $content->title }}
|
{{ __('View') }}
{{ __('Remove') }}
|
@endif
@endforeach
@endsection