PHP code example of codeiqbv / laravel-virtualizor

1. Go to this page and download the library: Download codeiqbv/laravel-virtualizor library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

codeiqbv / laravel-virtualizor example snippets


use CODEIQ\Virtualizor\Exceptions\VirtualizorApiException;

try {
    $users = VirtualizorAdmin::users()->list();
} catch (VirtualizorApiException $e) {
    $message = $e->getMessage();
    $context = $e->getContext(); // Available when debug is enabled
}
bash
php artisan vendor:publish --tag="virtualizor-config"