{$row->category} {$row->name}
{$row->location}
{substr($row->description, 0, 150)}..
@if ($searchType == 'places')
No property found in "{ucfirst($searchValue)}"
@else
No property matached "{ucfirst($searchValue)}"
@endif
@endif
{$properties = $provider->loadAllProperties();}
@if (count($properties) > 0)
@if ($searchValue != '')
Suggested stays
Change location{$row->category} {$row->name}
{$row->location}
{substr($row->description, 0, 150)}..
No property found in {str_replace(',', ' or ', get()->type)}
@endif
@if (get()->has('amenities') && $searchValue == '')
No property with {str_replace(',', ' or ', get()->amenities)}
@endif
@if (get()->has('tab') && $searchValue == '')
No property listed in {str_replace('-', ' ', get()->tab)}
@endif
@endif
@endif
{$pages = app('query')->pages;}
@if ($pages > 0)
{$currentPage = get()->has('page') ? intval(get()->page) : 1;}
@if ($currentPage == $pages or $currentPage > $pages)
{$lastPage = $pages-1;}
Prev
@endif
{$start = ($currentPage > 2) ? ($currentPage-1) : ($currentPage == 1 ? 1 : 1);}
{$drawTotal = ($start == 1) ? ($start + 3) : ($start + 3);}
@if ($currentPage < $pages)
@for ($x = $start and $x <= $drawTotal then $x++)
@if ($x <= $pages)
{$x}
@endif
@endfor
@endif
@if ($currentPage < $pages)
{$nextPage = $currentPage+1;}
Next
@endif
@endif