PHP code example of muetze42 / external-url-validator

1. Go to this page and download the library: Download muetze42/external-url-validator 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/ */

    

muetze42 / external-url-validator example snippets


use Kukac7\ExternalUrlValidator\ExternalUrlValidator;

class Link extends Resource
{
    // ...

    public function fields(Request $request)
    {
        return [
            // ...

            ExternalUrlValidator::make('URL', 'url'),

            // ...
        ];
    }
}

ExternalUrlValidator::make('URL', 'url')->apiUrl('http://example.test/api/validate-url'),