PHP code example of workup / nova-translatable

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

    

workup / nova-translatable example snippets

config/translatable.php

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

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