PHPackages                             inertia-volt/laravel-plugin - 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. [Framework](/categories/framework)
4. /
5. inertia-volt/laravel-plugin

ActiveLibrary[Framework](/categories/framework)

inertia-volt/laravel-plugin
===========================

A Laravel plugin for handling full-stack components powered by Inertia.JS

0.1.0-alpha(1y ago)163MITPHPPHP ^8.2

Since Sep 13Pushed 1y ago1 watchersCompare

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

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

Inertia Volt
============

[](#inertia-volt)

Full-stack page components powered by Inertia.JS

**Note: This package is in an early alpha stage, so expect potential bugs and API-breaking changes!**

```
// Welcome.inertia.vue

definePropsprefix('chirps')->name('chirps.')->middleware(['auth', 'verified']);

```

You can also wrap it in another route group:

```
Route::middleware('auth')->group(function () {
    InertiaVolt::page('Chirps/Index');
});

```

Under the hood, `InertiaVolt::page` creates a route group that encapsulates the `render` handler and other possible actions. You can think of it as a controller.

#### Page Actions

[](#page-actions)

In addition to the `render` action, **Inertia Volt** provides `post`, `put`, and `delete` actions to simplify resource manipulation for a page.

These action functions return a `Route` object, meaning you can apply a prefix, name, middleware, and even model binding to them:

```
post('', function (ChirpStoreRequest $request) {
    ...
});

put('{chirp}', function (ChirpStoreRequest $request, Chirp $chirp) {
    ...
})->name('update'); // with model binding and route name

```

You can also specify an invokable class as the action handler:

```
post('', CreateChirp::class);

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

604d ago

### Community

Maintainers

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

---

Top Contributors

[![hijhem](https://avatars.githubusercontent.com/u/4661017?v=4)](https://github.com/hijhem "hijhem (5 commits)")

---

Tags

laravelinertiavolt

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/inertia-volt-laravel-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/inertia-volt-laravel-plugin/health.svg)](https://phpackages.com/packages/inertia-volt-laravel-plugin)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k96.9M673](/packages/laravel-socialite)[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M531](/packages/laravel-passport)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

71510.9M66](/packages/laravel-mcp)[laravel/cashier-paddle

Cashier Paddle provides an expressive, fluent interface to Paddle's subscription billing services.

264778.4k3](/packages/laravel-cashier-paddle)

PHPackages © 2026

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