PHPackages                             marshmallow/reviews-kiyoh - 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. marshmallow/reviews-kiyoh

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

marshmallow/reviews-kiyoh
=========================

Connect your Kiyoh to your Laravel application

v1.2.3(2y ago)06.8k↓50%[1 PRs](https://github.com/marshmallow-packages/reviews-kiyoh/pulls)MITPHPPHP ^7.4|^8.0CI passing

Since May 20Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/marshmallow-packages/reviews-kiyoh)[ Packagist](https://packagist.org/packages/marshmallow/reviews-kiyoh)[ Docs](https://github.com/Marshmallow-Development/)[ RSS](/packages/marshmallow-reviews-kiyoh/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (14)Used By (0)

[![marshmallow-transparent-logo](https://camo.githubusercontent.com/329958cb02b7bee461fd9dcae7a0a3a34e6595669116ff441ad5ef9e77bc511c/68747470733a2f2f63646e2e6d617273686d616c6c6f772d6f66666963652e636f6d2f6d656469612f696d616765732f6c6f676f2f6d617273686d616c6c6f772e7472616e73706172656e742e7265642e706e67)](https://marshmallow.dev)

Laravel Kiyoh Reviews
=====================

[](#laravel-kiyoh-reviews)

[![Latest Version on Packagist](https://camo.githubusercontent.com/205b89184d34f77ebef764014fa006a7d78c187dddd23bd630e68c5f42991e64/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d617273686d616c6c6f772f726576696577732d6b69796f682e737667)](https://gitlab.com/marshmallow-packages/reviews/kiyoh)[![Total Downloads](https://camo.githubusercontent.com/37da19bfa4114599f66aacf05d25e3877aa6fe13cd0200dbe507b25dc67ffd6d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d617273686d616c6c6f772f726576696577732d6b69796f682e737667)](https://gitlab.com/marshmallow-packages/reviews/kiyoh)[![License](https://camo.githubusercontent.com/7724d52d6f707c45679fc6dd198db36f3538b6d6c502467fd0b5c1cb7484100f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6d617273686d616c6c6f772f726576696577732d6b69796f682e737667)](https://gitlab.com/marshmallow-packages/reviews/kiyoh)[![Stars](https://camo.githubusercontent.com/ec8f66cd17a5dd6688c3d427e71e993b73e83527f524fa0a5893807472064a67/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e2e7376673f6c6162656c3d73746172732675726c3d68747470733a2f2f6769746c61622e636f6d2f6170692f76342f70726f6a656374732f31383839383831392671756572793d242e737461725f636f756e7426636f6c6f72423d79656c6c6f77)](https://gitlab.com/marshmallow-packages/reviews/kiyoh)[![Forks](https://camo.githubusercontent.com/3958babd98e2cb23a0cc0fd98780d9b1e9f5e80858cf0d2e753ceeb769a5c6f8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e2e7376673f6c6162656c3d666f726b732675726c3d68747470733a2f2f6769746c61622e636f6d2f6170692f76342f70726f6a656374732f31383839383831392671756572793d242e666f726b735f636f756e7426636f6c6f72423d627269676874677265656e)](https://gitlab.com/marshmallow-packages/reviews/kiyoh)

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

[](#installation)

You can install this package using composer.

```
composer require marshmallow/reviews-kiyoh
```

Setup
-----

[](#setup)

To start using Kiyoh you need to publish the config and update the config accordingly. You need to add `hash`, `location_id` and `feed_hash` to `config/kiyoh.php`.

```
php artisan vendor:publish --provider="Marshmallow\Reviews\Kiyoh\ServiceProvider"
```

Invites
-------

[](#invites)

```
use Marshmallow\Reviews\Kiyoh\Facades\KiyohInvite;
use Marshmallow\Reviews\Kiyoh\Exceptions\KiyohException;

try {

    KiyohInvite::email('stef@marshmallow.dev')
                /**
                 * Optional
                 */
                ->supplier('Marshmallow')
                ->firstName('Stef')
                ->lastName('van Esch')
                ->refCode('Order: #1001')
                ->city('Alphen aan den Rijn')

                ->delayIgnoreWeekend(3)

                /**
                 * Always end with invite()
                 */
                ->invite();

} catch (KiyohException $e) {
    /**
     * You should always try-catch this. Kiyoh can
     * through an error if someone has already received
     * an invitation. If this is thrown, you don't want
     * you code to be killed!
     */
}
```

Feed aggregate information
--------------------------

[](#feed-aggregate-information)

Using feed information is very easy. Use the `Kiyoh` facade to access feed data. Available methods are listed below. Please note that by default the XML feed of Kiyoh will be cached using your default `CACHE_DRIVER`. The feed will be cached for 1 hour. You can change this in `config/kiyoh.php`. If for some reason the feed is unavailable an exeption will be thrown. If you are using these methods in blade you can prefix the methods with `dontFail()`. If you use `dontFail()` all methods will return `0`.

```
use Marshmallow\Reviews\Kiyoh\Facades\Kiyoh;

Kiyoh::feed()->average()
Kiyoh::dontFail()->feed()->average();
```

### Available methods

[](#available-methods)

- Kiyoh::feed()-&gt;average()
- Kiyoh::feed()-&gt;count()
- Kiyoh::feed()-&gt;average12months()
- Kiyoh::feed()-&gt;count12months()
- Kiyoh::feed()-&gt;recommendation()
- Kiyoh::feed()-&gt;getAttribute('average')

Store the reviews in your own database
--------------------------------------

[](#store-the-reviews-in-your-own-database)

If you wish to get all the reviews and store them in you own database or do whatever with it, you can get them with the methods below:

```
$reviews = Kiyoh::withoutCache()->feed();
foreach ($reviews as $review) {
    // Do your own magic here
}
```

Products
--------

[](#products)

php artisan marshmallow:resource KiyohProduct Reviews\\Kiyoh

---

Copyright (c) 2020 marshmallow.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Tests during development
------------------------

[](#tests-during-development)

`php artisan test packages/marshmallow/reviews/kiyoh`

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance47

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 78.3% 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 ~125 days

Recently: every ~185 days

Total

12

Last Release

812d ago

PHP version history (2 changes)v1.0.0PHP ^7.4

v1.0.4PHP ^7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/be33d2624e24c516e73892b0929447cc762f3622c024ab8d0d2a59042e5d2c7f?d=identicon)[marshmallow](/maintainers/marshmallow)

---

Top Contributors

[![stefvanesch](https://avatars.githubusercontent.com/u/46725619?v=4)](https://github.com/stefvanesch "stefvanesch (36 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![lucienversendaal](https://avatars.githubusercontent.com/u/76224741?v=4)](https://github.com/lucienversendaal "lucienversendaal (4 commits)")

---

Tags

laravelmarshmallowkiyohlaravel kiyoh

### Embed Badge

![Health badge](/badges/marshmallow-reviews-kiyoh/health.svg)

```
[![Health](https://phpackages.com/badges/marshmallow-reviews-kiyoh/health.svg)](https://phpackages.com/packages/marshmallow-reviews-kiyoh)
```

###  Alternatives

[stephenjude/filament-blog

Filament Blog Builder

20317.8k](/packages/stephenjude-filament-blog)

PHPackages © 2026

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