@extends('master') @section('title', 'All Listings') @section('description', '') @section('keywords', '') @section('content')

View all {{ Auth::user()->agency }} listings

@foreach($timeshares as $timeshare) @if($timeshare->published==1) @else @endif @endforeach
Owner Agent Resort Week Module Unit Beds Season Region Amount Submitted Publish Status
{{ $timeshare->owner }} {{ $timeshare->agent }} {{ $timeshare->resort }} {{ $timeshare->week }} {{ $timeshare->module }} {{ $timeshare->unit }} {{ $timeshare->bedrooms }} {{ ucfirst(trans($timeshare->season)) }} {{ ucfirst(trans($timeshare->region)) }} R {{ number_format($timeshare->price, 2) }} {{ $timeshare->created_at }} {{ $timeshare->status }}
links(); ?>
@stop