PHPackages                             yubarajshrestha/iarticles - 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. yubarajshrestha/iarticles

ActiveLibrary

yubarajshrestha/iarticles
=========================

Super instant article generator.

v1.2(6y ago)060MITPHP

Since Sep 6Pushed 6y ago1 watchersCompare

[ Source](https://github.com/yubarajshrestha/iarticles)[ Packagist](https://packagist.org/packages/yubarajshrestha/iarticles)[ Docs](https://iarticles.yubarajshrestha.com.np/)[ RSS](/packages/yubarajshrestha-iarticles/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

iArticles
=========

[](#iarticles)

[![GitHub stars](https://camo.githubusercontent.com/c71eeb015968a6327096cd4f11921bb46abbfb806aedd1c66285cc1585397c66/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f7975626172616a73687265737468612f6c61726176656c2d6d6f64756c652e737667)](https://github.com/yubarajshrestha/iarticles/stargazers)[![Latest Stable Version](https://camo.githubusercontent.com/85105274a750452385562cb0d5917ac3b5d1bba0c5893c7b51ebcd3a570ebfa1/68747470733a2f2f706f7365722e707567782e6f72672f7975626172616a73687265737468612f6961727469636c65732f762f737461626c65)](https://packagist.org/packages/yubarajshrestha/iarticles)[![Total Downloads](https://camo.githubusercontent.com/2791de8f74757c0169606ee2280a8ec272f9584971cb402129d6c18f76a24fa9/68747470733a2f2f706f7365722e707567782e6f72672f7975626172616a73687265737468612f6961727469636c65732f646f776e6c6f616473)](https://packagist.org/packages/yubarajshrestha/iarticles)[![License](https://camo.githubusercontent.com/36c030d29780e3b9bdcbb6d0bb4047d62159c40842295b289fac0fbad8e9c971/68747470733a2f2f706f7365722e707567782e6f72672f7975626172616a73687265737468612f6961727469636c65732f6c6963656e7365)](https://packagist.org/packages/yubarajshrestha/iarticles)

**If you are seeking package for generating instant article or feeds then yes, this package is for you.**

> This helps you generate facebooks instant articles and also regular feeds with enough customizations you might need.

### How to?

[](#how-to)

#### Step 1: Install package

[](#step-1-install-package)

Install package by executing the command.

```
composer require yubarajshrestha/iarticles
```

#### Step 2: Publish Vendor Files

[](#step-2-publish-vendor-files)

You need to have some files and don't worry it's quite easy. You just want to execute the command now.

```
php artisan vendor:publish --tag=iarticles
```

#### Step 3: Update Configurations

[](#step-3-update-configurations)

You need to define options in your `iarticles` configuration file. You'll find default options from where you will get an idea on how to configure things.

#### Step 4: Implement Instant Article Interface to your Model and configure as follows

[](#step-4-implement-instant-article-interface-to-your-model-and-configure-as-follows)

```
use YubarajShrestha\IArticles\InstantArticle;
use YubarajShrestha\IArticles\Articles;
class YourModel implements InstantArticle {

    /**
     * Instant Article
     * @return Collection of YourModel
     */
    public static function getFeedItems()
    {
        return YourModel::latest()->get()->take(25);
    }

    /**
     * Filter Feed Data
     * @return iArticle Object
     */
    public function iArticle()
    {
        return Articles::create([
            'id' => $this->id, // required | integer
            'title' => $this->name, // required | string
            'subtitle' => '', // nullable | string
            'kicker' => $this->kicker, // nullable | string
            'summary' => '', // required | string
            'description' => '', // required | string
            'cover' => '', // nullable | string
            'updated' => '', // required | date
            'published' => Carbon::parse($this->created_at), // required | date
            'link' => '', // full url to item...
            'author' => '' // nullable | email | string
        ]);
    }
}
```

#### Step 5: Awesome

[](#step-5-awesome)

1. Your project is now ready to go 👍.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~67 days

Total

2

Last Release

2373d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4140257658433cc8eb3a1a36a13fdf25ae15b9716c682f1c69a5a3bfb13f0a4b?d=identicon)[meyubaraj](/maintainers/meyubaraj)

---

Top Contributors

[![yubarajshrestha](https://avatars.githubusercontent.com/u/7955362?v=4)](https://github.com/yubarajshrestha "yubarajshrestha (25 commits)")

---

Tags

laravellaravellaravel-moduleiarticles

### Embed Badge

![Health badge](/badges/yubarajshrestha-iarticles/health.svg)

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

###  Alternatives

[mhmiton/laravel-modules-livewire

Using Laravel Livewire in Laravel Modules package with automatically registered livewire components for every modules.

236409.6k9](/packages/mhmiton-laravel-modules-livewire)[rtconner/laravel-likeable

Trait for Laravel Eloquent models to allow easy implementation of a 'like' or 'favorite' or 'remember' feature.

394388.0k5](/packages/rtconner-laravel-likeable)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[hexters/laramodule

Laramodule is an HMVC pattern for the Laravel framework.

322.8k2](/packages/hexters-laramodule)

PHPackages © 2026

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