@extends('layouts.account') @section('title', __('Saved properties')) @section('heading', __('Saved properties')) @section('subheading', __('Your shortlist. We will tell you if any of these change price.')) @section('account') @if ($listings->isEmpty()) {{ __('Browse properties') }} @else
@foreach ($listings as $listing) @include('public.partials.listing-card', [ 'listing' => $listing, 'favouritedIds' => $favouritedIds, ]) @endforeach
{{ $listings->links() }}
@endif @endsection