PHP code example of isaeken / laravel-translator
1. Go to this page and download the library: Download isaeken/laravel-translator 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/ */
isaeken / laravel-translator example snippets
// config/translator.php
'autosave' => true
__('Hello :var', ['var' => 'World']); // save to your fallback file when auto save enabled.
bash
php artisan vendor:publish --provider="IsaEken\LaravelTranslator\LaravelTranslatorServiceProvider" --tag="laravel-translator-config"