/home/bdqbpbxa/api-uniferx.goodface.com.ua/vendor/inertiajs/inertia-laravel/src/Ssr/Response.php
<?php

namespace Inertia\Ssr;

class Response
{
    /**
     * @var string
     */
    public $head;

    /**
     * @var string
     */
    public $body;

    /**
     * Prepare the Inertia Server Side Rendering (SSR) response.
     */
    public function __construct(string $head, string $body)
    {
        $this->head = $head;
        $this->body = $body;
    }
}