marko/inertia

Inertia.js protocol integration for the Marko Framework - middleware, response factory, shared data, and SSR support
72 1
Install
composer require marko/inertia
Latest Version:0.8.0
PHP:^8.5
License:MIT
Last Updated:Jun 12, 2026
Links: GitHub  ·  Packagist
Maintainer: markshust

marko/inertia

Inertia.js protocol integration for the Marko Framework - middleware, response factory, shared data, and SSR support.

Installation

composer require marko/inertia

Quick Example

use Marko\Inertia\Inertia;
use Marko\Routing\Http\Request;
use Marko\Routing\Http\Response;

class DashboardController
{
    public function __construct(
        private readonly Inertia $inertia,
    ) {}

    public function index(Request $request): Response
    {
        return $this->inertia->render($request, 'Dashboard', [
            'user' => ['name' => 'Paulo'],
        ]);
    }
}

Documentation

Full usage, API reference, and examples: marko/inertia