lms/vendor/inertiajs/inertia-laravel/src/PropertyContext.php
2025-12-15 12:26:23 +01:00

24 lines
491 B
PHP

<?php
namespace Inertia;
use Illuminate\Http\Request;
class PropertyContext
{
/**
* Create a new property context instance. The property context provides
* information about the current property being resolved to objects
* implementing ProvidesInertiaProperty.
*
* @param array<string, mixed> $props
*/
public function __construct(
public string $key,
public array $props,
public Request $request
) {
//
}
}