@extends('master')
@section('title', 'Manage Agency Timeshares')
@section('description', '')
@section('keywords', '')
@section('content')
Manage {{ Auth::user()->agency }} timeshares
Owner |
Agent |
Resort |
Week |
Module |
Unit |
Beds |
Season |
Region |
Amount |
Verified |
Publish |
Status |
Edit |
Delete |
@foreach($timeshares as $timeshare)
{{ $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 }} |
@if($timeshare->verified==1)
|
@else
|
@endif
@if($timeshare->published==1)
|
@else
|
@endif
{{ $timeshare->status }} |
|
|
@endforeach
links(); ?>
@stop