PHP code example of jesperfiltenborg / nova-variable-field

1. Go to this page and download the library: Download jesperfiltenborg/nova-variable-field 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/ */

    

jesperfiltenborg / nova-variable-field example snippets

config/translatable.php

// config/translatable.php
return [
    ...
    'locales' => [
        'en' => 'English',
        'de' => 'German',
        'fr' => 'French',
    ],
];

Translatable::make('Description')->locales([
    'en' => 'English',
    'de' => 'German',
]),