PHP code example of chaseconey / nova-external-image

1. Go to this page and download the library: Download chaseconey/nova-external-image 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/ */

    

chaseconey / nova-external-image example snippets


use Chaseconey\ExternalImage\ExternalImage;

ExternalImage::make('Image')

ExternalImage::make('Image')
    ->prefix('https://example.com/'),

ExternalImage::make('Image')
    ->width(32),

ExternalImage::make('Image')
    ->height(32),

ExternalImage::make('Image')
    ->radius(32),

ExternalImage::make('Image')
    ->avatar(),