Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/inertiajs/inertia-laravel/src/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/vendor/inertiajs/inertia-laravel/src/LazyProp.php

<?php

namespace Inertia;

use Illuminate\Support\Facades\App;

class LazyProp
{
    protected $callback;

    public function __construct(callable $callback)
    {
        $this->callback = $callback;
    }

    public function __invoke()
    {
        return App::call($this->callback);
    }
}