@extends('master') @section('title', 'Manage Agency Timeshares') @section('description', '') @section('keywords', '') @section('content')

Manage {{ Auth::user()->agency }} timeshares

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