1. Go to this page and download the library: Download helgesverre/laravel-podscan library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
helgesverre / laravel-podscan example snippets
return [
'api_key' => env('PODSCAN_API_KEY'),
];
use HelgeSverre\Podscan\Podscan;
// Instantiate the client
$podscan = new Podscan(apiKey: config('podscan.api_key'));
// Or use the Facade (Laravel)
Podscan::alerts();
Podscan::category();
Podscan::episodes();
Podscan::podcasts();
Podscan::teams();