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. [API Development](/categories/api)
4. /
5. kodeops/laravel-strapi

ActiveLibrary[API Development](/categories/api)

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

Strapi wrapper for Laravel.

0328PHP

Since Nov 17Pushed 7mo 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 today

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

20

—

LowBetter than 13% of packages

Maintenance44

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://avatars.githubusercontent.com/u/40502810?v=4)[kodeops](/maintainers/kodeops)[@kodeops](https://github.com/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)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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