lara / rets
Installs: 95
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 3
Forks: 1
Open Issues: 0
pkg:composer/lara/rets
Requires
- php: >=5.4.0
- illuminate/support: ~4
- troydavisson/phrets: 1.0.0
This package is not auto-updated.
Last update: 2022-11-26 05:32:37 UTC
README
###This package is DEPRECATED, please check out PHRETS
RETS client for Laravel using PHRETS.
$select = ['ListingKey','ModificationTimestamp'];
$query = [
'ListingKey' => '0+',
'ModificationTimestamp' => '2014-02-20T01:00:00+'
];
$client = Rets::resourceClass('Property','RES')
->select($select)
->query($query)
->limit(10)
->make();
$records = [];
if ( $client->exist() )
{
foreach($client->results as $row)
{
$records[] = $row;
}
}
dd($recorods)