Skip to content

Instantly share code, notes, and snippets.

@auniverseaway
Created July 31, 2014 23:27
Show Gist options
  • Save auniverseaway/e5b7c0d3496c6f474103 to your computer and use it in GitHub Desktop.
Save auniverseaway/e5b7c0d3496c6f474103 to your computer and use it in GitHub Desktop.
foreach ($podcasts as $podcast) {
$ourPodcast = Podcast::where('itunes_id', '=', $podcast->trackId)->first();
// If we don't have a record of the podcast, go ahead and create it.
if (is_null($ourPodcast))
{
$return[] = App::make('PodcastsController')->createFromItunes($podcast);
} else {
$return[] = $ourPodcast;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment