This package simply wraps the OS API into a Laravel friendly package. The facade is the easiest way to use the package. For instance : TCOSDATA::postcode('1234AB') will return the data for that postcode. (Dont forget to add the use statement at the top of your file : use Sitesurfer\tcosdata\Facades\TCOSDATA;)
## Installation
You can install the package via composer:
```bash
composer require sitesurfer/tc-osdata
You can publish and run the migrations with:
php artisan vendor:publish --tag="tc-osdata-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="tc-osdata-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="tc-osdata-views"
$tCOsdata = new Sitesurfer\TCOsdata();
echo $tCOsdata->echoPhrase('Hello, Sitesurfer!');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.