PHPackages                             jeremykenedy/laravelpodcast - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jeremykenedy/laravelpodcast

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jeremykenedy/laravelpodcast
===========================

Laravel podcast manager package

v0.0.8(9y ago)261126MITCSSPHP &gt;=5.6.4

Since Feb 13Pushed 6y ago1 watchersCompare

[ Source](https://github.com/jeremykenedy/laravelpodcast)[ Packagist](https://packagist.org/packages/jeremykenedy/laravelpodcast)[ RSS](/packages/jeremykenedy-laravelpodcast/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (3)Versions (9)Used By (0)

laravelpodcast | A Laravel podcast manager package - v0.0.8
===========================================================

[](#laravelpodcast--a-laravel-podcast-manager-package---v008)

[![Total Downloads](https://camo.githubusercontent.com/91162c6ba734189a1f9036eb4f5ab586d3634da934dd0fe4e4b4a80eb8bf5087/68747470733a2f2f706f7365722e707567782e6f72672f6a6572656d796b656e6564792f6c61726176656c706f64636173742f642f746f74616c2e737667)](https://packagist.org/packages/jeremykenedy/laravelpodcast)[![StyleCI](https://camo.githubusercontent.com/22e6896eb58a251ae8382a0f91d73b20d1b7a0485cdc35a33434611c3e6b0f5f/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f38313737323831332f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/81772813)[![Latest Stable Version](https://camo.githubusercontent.com/937aa8d1b86553bf7dd57cc1d4e1db0404dab8e01544f0a8bd751ac7d41ac43d/68747470733a2f2f706f7365722e707567782e6f72672f6a6572656d796b656e6564792f6c61726176656c706f64636173742f762f737461626c652e737667)](https://packagist.org/packages/jeremykenedy/laravelpodcast)[![License](https://camo.githubusercontent.com/5df38dbff6d6f95ddb1d8ed044ffd5febb02d1a42de45092c7088fa8e19dcab1/68747470733a2f2f706f7365722e707567782e6f72672f6a6572656d796b656e6564792f6c61726176656c706f64636173742f6c6963656e73652e737667)](https://packagist.org/packages/jeremykenedy/laravelpodcast)

Introduction
------------

[](#introduction)

Laravel Podcast Manager is a complete podcast manager package for Laravel 5.3+ that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI.

Requirements
------------

[](#requirements)

- [Laravel 5.3+](https://laravel.com/docs/installation)

    Example new project creation command:

    `laravel new podcast`
- [Laravel Authentication Scaffolding](https://laravel.com/docs/authentication)

    Authentication installation command:

    `php artisan make:auth`

Installation
------------

[](#installation)

1. From your projects root folder in terminal run:

    ```
       composer require jeremykenedy/laravelpodcast

    ```
2. Register the package with laravel in `config/app.php` under `providers` with the following:

    ```
       Collective\Html\HtmlServiceProvider::class,
       willvincent\Feeds\FeedsServiceProvider::class,
       Intervention\Image\ImageServiceProvider::class,
       jeremykenedy\laravelpodcast\PodcastServiceProvider::class,

    ```
3. Register the dependencies aliases with laravel in `config/app.php` section under `aliases` with the following:

    ```
       'Form' => Collective\Html\FormFacade::class,
       'Html' => Collective\Html\HtmlFacade::class,
       'Feeds'    => willvincent\Feeds\Facades\FeedsFacade::class,
       'Image' => Intervention\Image\Facades\Image::class,

    ```
4. Publish the packages assets by running the following from your projects root folder:

    ```
       php artisan vendor:publish

    ```
5. Configure your projects `.env` file and add the following:

    ```
       DB_CHARSET=utf8mb4
       DB_COLLATION=utf8mb4_unicode_ci

    ```
6. Update the datebase by running the following from your projects root folder:

    ```
       php artisan migrate

    ```

Routes
------

[](#routes)

- `/podcast`
- `/podcasts`
- `/podcast/search`
- `/podcasts/manage`
- `/podcasts/player`
- `/podcasts/settings`
- `/podcasts/favorites`
- `/podcasts/auto-update`

Required Packages
-----------------

[](#required-packages)

(included in this package)

- [laravelcollective/html](https://packagist.org/packages/laravelcollective/html)
- [willvincent/feeds](https://packagist.org/packages/willvincent/feeds)
- [intervention/image](https://packagist.org/packages/intervention/image)

Screenshots
-----------

[](#screenshots)

[![Home/Listen Page](https://camo.githubusercontent.com/9aa032c2fbf8c103e5989e0669a91664497510e2dbfd3dd5a84be824bd857a7a/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f312d686f6d652e6a7067)](https://camo.githubusercontent.com/9aa032c2fbf8c103e5989e0669a91664497510e2dbfd3dd5a84be824bd857a7a/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f312d686f6d652e6a7067)[![Manage Page](https://camo.githubusercontent.com/a85c3a14a68918d1879bbbf5a8e88133621d1126250d635d9d3b3c23ff307967/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f322d6d616e6167652e6a7067)](https://camo.githubusercontent.com/a85c3a14a68918d1879bbbf5a8e88133621d1126250d635d9d3b3c23ff307967/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f322d6d616e6167652e6a7067)[![Favorites Page](https://camo.githubusercontent.com/b2799c41b7762d847f83941b0f125f17b3e6deec991d7bc1cde5a6b76584b413/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f332d6661766f72697465732e6a7067)](https://camo.githubusercontent.com/b2799c41b7762d847f83941b0f125f17b3e6deec991d7bc1cde5a6b76584b413/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f332d6661766f72697465732e6a7067)[![Search Results Page](https://camo.githubusercontent.com/3bc1fbf87e353fe3dad50180516d98ac6513a8fab4178721a53635033f02260c/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f342d7365617263682e6a7067)](https://camo.githubusercontent.com/3bc1fbf87e353fe3dad50180516d98ac6513a8fab4178721a53635033f02260c/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f342d7365617263682e6a7067)[![Mark as Read Modal](https://camo.githubusercontent.com/25303533c04200e0859126164f704e94bec6f398720328c3df15b41bd96a44dc/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f372d6d6f64616c2d726561642e6a7067)](https://camo.githubusercontent.com/25303533c04200e0859126164f704e94bec6f398720328c3df15b41bd96a44dc/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f372d6d6f64616c2d726561642e6a7067)[![Mark All as Read Modal](https://camo.githubusercontent.com/4b007d175701533ff01990757f4cc2b280fed1dfc39fd3326a88c671a7bab267/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f382d6d6f64616c2d616c6c2d726561642e6a7067)](https://camo.githubusercontent.com/4b007d175701533ff01990757f4cc2b280fed1dfc39fd3326a88c671a7bab267/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f382d6d6f64616c2d616c6c2d726561642e6a7067)[![Add RSS Feed Modal](https://camo.githubusercontent.com/940d511c6df6ebfb49c7955a4e9213c14689501c5ced1608feb3f1f6caa9b742/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f392d6d6f64616c2d6164642e6a7067)](https://camo.githubusercontent.com/940d511c6df6ebfb49c7955a4e9213c14689501c5ced1608feb3f1f6caa9b742/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f392d6d6f64616c2d6164642e6a7067)[![Delete RSS Feed Modal](https://camo.githubusercontent.com/4bef0c7a1f96c7b528bbdecb71106e1cfae8b9935e8c06bc05477698d1c270fd/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f31302d6d6f64616c2d64656c6574652e6a7067)](https://camo.githubusercontent.com/4bef0c7a1f96c7b528bbdecb71106e1cfae8b9935e8c06bc05477698d1c270fd/68747470733a2f2f73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6769746875622d70726f6a6563742d696d616765732f6c61726176656c2d706f64636173742f31302d6d6f64616c2d64656c6574652e6a7067)

License
-------

[](#license)

laravelpodcast - A Laravel package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

8

Last Release

3424d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/05cef7d9ee65723b129042943511207fb34db74a56afbf67b5900987f758c161?d=identicon)[jeremykenedy](/maintainers/jeremykenedy)

---

Top Contributors

[![jeremykenedy](https://avatars.githubusercontent.com/u/6244570?v=4)](https://github.com/jeremykenedy "jeremykenedy (17 commits)")

---

Tags

laravelpodcast

### Embed Badge

![Health badge](/badges/jeremykenedy-laravelpodcast/health.svg)

```
[![Health](https://phpackages.com/badges/jeremykenedy-laravelpodcast/health.svg)](https://phpackages.com/packages/jeremykenedy-laravelpodcast)
```

###  Alternatives

[laravolt/avatar

Turn name, email, and any other string into initial-based avatar or gravatar.

2.0k5.6M38](/packages/laravolt-avatar)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[symfony/ux-cropperjs

Cropper.js integration for Symfony

19322.9k3](/packages/symfony-ux-cropperjs)[caouecs/sirtrevorjs

Sir Trevor JS in Laravel project

5421.6k](/packages/caouecs-sirtrevorjs)[rinvex/laravel-menus

Rinvex Menus is a simple menu builder package for Laravel, that supports hierarchical structure, ordering, and styling with full flexibility using presenters for easy styling and custom structure of menu rendering.

304.0k20](/packages/rinvex-laravel-menus)[efficiently/jquery-laravel

This package provides jQuery and the jQuery-ujs driver for your Laravel &gt;= 6 application.

1411.3k1](/packages/efficiently-jquery-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
