LaravelPackages.net
Acme Inc.
Toggle sidebar
cyberduck/laravel-zoopla

Laravel wrapper for the Zoopla API

303
4
About cyberduck/laravel-zoopla

cyberduck/laravel-zoopla is a Laravel package for laravel wrapper for the zoopla api. It currently has 4 GitHub stars and 303 downloads on Packagist. Install it with composer require cyberduck/laravel-zoopla. Discover more Laravel packages by cyberduck or browse all Laravel packages to compare alternatives.

Last updated

laravel-zoopla

Laravel 5 package for the Zoopla API

Install

Simply add the following line to your composer.json and run install/update:

"cyberduck/laravel-zoopla": "dev-master"

Configuration

Publish the package config files to configure your api keys:

php artisan vendor:publish

You will also need to add the service provider and optionally the facade alias to your app/config/app.php:

'providers' => array(
  'Cyberduck\LaravelZoopla\LaravelZooplaServiceProvider'
)

'aliases' => array(
  'Zoopla' => 'Cyberduck\LaravelZoopla\Facades\Zoopla'
),

Usage

Please see the Zoopla API for full documentation.

You can either use the facade or inject the Zoopla class. The package provides a camel case interface to all the existing api methods

Zoopla::PropertyListings(['postcode' => 'WD6 3EP'])

Star History Chart