unforgivencl/larachileanlaw

Provides an wrapper to leychile.cl with Laravel 5.3.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Type:laravel-package

dev-master 2016-10-17 23:33 UTC

This package is not auto-updated.

Last update: 2024-10-12 19:44:25 UTC


README

Package to facilitate the use of leychile.cl web service using Laravel

Installation

To add this package on your Laravel project add this on your `composer.json file

"unforgivencl/larachileanlaw": "dev-master"

To install and configure add the service provider to your config/app.php

Unforgivencl\LaraChileanLaw\LaraChileanLawServiceProvider::class,

If you want to use the Facade add this to your facade section on config/app.php

'LaraChileanLaw' => Unforgivencl\LaraChileanLaw\Facades\LaraChileanLaw::class,

Usage

For example if you want to get the latests 5 laws published you can use

$laws = LaraChileanLaw::law()->paginate(5)->getLatestPublished()->fetch();

If you want the law that contains an text with your input you can use

$laws = LaraChileanLaw::law()->paginate(5)->content('aborto')->getByContent()->fetch();

If you want a specific law by BCN with the latest version you can use

$law = LaraChileanLaw::law()->number('1')->getLatestSpecific()->fetch();

Response

All responses are converted to JSON from an XML Response, if you see any weird index or order, i'm sorry but the web service are very incosistent

Development

This package are under development so if you find any bug feel free to send PR or send an issue.