$query = str_replace(array('?'), array(''%s''), $results->toSql());
$query = vsprintf($query, $results->getBindings());
dump($query);
$result = $results->get();
use AppServicesTransistor;
use AppServicesPodcastParser;
$this->app->bind(Transistor::class, function ($app) {
return new Transistor($app->make(PodcastParser::class));
});