| Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/inertiajs/inertia-laravel/src/Ssr/ |
| Current File : /home/users/unlimited/www/whatsapp-crm/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;
}
}