File "AutoInertiaDeferred.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Attributes/AutoInertiaDeferred.php
File size: 618 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Attributes;
use Attribute;
use Closure;
use Spatie\LaravelData\Lazy;
use Spatie\LaravelData\Support\DataProperty;
use Spatie\LaravelData\Support\Lazy\InertiaDeferred;
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY)]
class AutoInertiaDeferred extends AutoLazy
{
public function __construct(
protected ?string $group = null,
) {
}
public function build(Closure $castValue, mixed $payload, DataProperty $property, mixed $value): InertiaDeferred
{
return Lazy::inertiaDeferred(fn () => $castValue($value), $this->group);
}
}