PHPackages                             kodeops/laravel-strapi - 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. kodeops/laravel-strapi

ActiveLibrary

kodeops/laravel-strapi
======================

Strapi wrapper for Laravel.

0247PHP

Since Nov 17Pushed 6mo ago1 watchersCompare

[ Source](https://github.com/kodeops/laravel-strapi)[ Packagist](https://packagist.org/packages/kodeops/laravel-strapi)[ RSS](/packages/kodeops-laravel-strapi/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

```
 _     _  _____  ______  _______  _____   _____  _______
 |____/  |     | |     \ |______ |     | |_____] |______
 |    \_ |_____| |_____/ |______ |_____| |       ______|

```

Laravel Strapi Wrapper
======================

[](#laravel-strapi-wrapper)

This package is a wrapper to make REST API calls to [Strapi](https://docs.strapi.io/developer-docs/latest/getting-started/introduction.html).

Making a request
----------------

[](#making-a-request)

The REST API allows accessing the content-types through API endpoints. Strapi automatically creates API endpoints when a content-type is created. API parameters can be used when querying API endpoints to refine the results.

[REST API Documentation](https://docs-v4.strapi.io/dev-docs/intro)

```
use kodeops\LaravelStrapi\Strapi;

$collection = 'tgam-artist';
$params = [
    'populate' => 'deep',
];
$loop_results = true;

Strapi::request($collection, $params, $loop_results);

```

Update a collection item:

```
use kodeops\LaravelStrapi\Strapi;

$collection = 'tgam-artist';
$params = [
    'data' => [
        'title' => A title for the collection item',
    ],
];

Strapi::update($collection, $params);

```

Create a collection item:

```
use kodeops\LaravelStrapi\Strapi;

$collection = 'tgam-artists';
$params = [
    'data' => [
        'title' => A title for the collection item',
        'description' => A description for the collection item',
        'url' => A url for the collection item',
    ],
];

Strapi::create($collection, $params);

```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance47

Moderate activity, may be stable

Popularity15

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

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.

### Community

Maintainers

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

### Embed Badge

![Health badge](/badges/kodeops-laravel-strapi/health.svg)

```
[![Health](https://phpackages.com/badges/kodeops-laravel-strapi/health.svg)](https://phpackages.com/packages/kodeops-laravel-strapi)
```

PHPackages © 2026

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