@extends('frontend.layouts.master') @section('content')
@include('frontend.include.sidebar')
@if ($data['wishlist']->count() > 0)
{{ _trans('landlord.Showing') }} {{ $data['wishlist']->perPage() * $data['wishlist']->currentPage() - ($data['wishlist']->perPage() - 1) }} – {{ $data['wishlist']->perPage() * $data['wishlist']->currentPage() > $data['wishlist']->total() ? $data['wishlist']->total() : $data['wishlist']->perPage() * $data['wishlist']->currentPage() }} of {{ $data['wishlist']->total() }} {{ _trans('landlord.Results') }}
{{-- --}}
@foreach ($data['wishlist'] as $wishlist)
{{ $wishlist->property->category->name }}

{{ $wishlist->property->name }}

৳ {{ $wishlist->property->rent_amount }}

{{-- {{ _trans('landlord.Add To Cart')}} --}}
@endforeach
@if ($data['wishlist']->currentPage() == 1) {{ _trans('landlord.Prev') }} @else {{ _trans('landlord.Prev') }} @endif @foreach ($data['wishlist']->links()['elements'][0] as $key => $item) {{ $key }} @endforeach @if ($data['wishlist']->currentPage() == count($data['wishlist']->links()['elements'][0])) {{ _trans('landlord.Next') }} @else {{ _trans('landlord.Next') }} @endif
@else

You have no Wishlist

@endif
@endsection