@extends('master')
@section('title', 'Residential Properties Admin')
@section('description', '')
@section('keywords', '')
@section('content')
All Resindetial Properties
Name |
Reference |
Size |
Price |
Type |
Publish |
Status |
Edit |
Delete |
@foreach($residentials as $residential)
{{ $residential->name }} |
{{ $residential->ref }} |
{{ $residential->size }} |
{{ $residential->price }} |
{{ $residential->propertType }} |
@if($residential->published==1)
|
@else
|
@endif
{{ $residential->status2 }} |
|
|
@endforeach
links(); ?>
@stop