@extends('template') @section('main')
@if($listed->count() > 0)
{{trans('messages.property.listed')}}
@foreach($listed as $row) @endforeach
@endif @if($unlisted->count() > 0)
{{trans('messages.property.unlisted')}}
@foreach($unlisted as $row) @endforeach
@endif
@stop