PHP code example of bstien / laravel-tvdb

1. Go to this page and download the library: Download bstien/laravel-tvdb 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/ */

    

bstien / laravel-tvdb example snippets


use Stien\TvDb\Facades\TvDb;
# You can add this to your Facades under config/app.php if you like

$serie = TvDb::getSerie(75710);
echo $serie->name;

bash
php artisan vendor:publish