PHP code example of datalogix / laravel-translation

1. Go to this page and download the library: Download datalogix/laravel-translation 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/ */

    

datalogix / laravel-translation example snippets


// app/Providers/AppServiceProvider.php

public function boot()
{
    $this->callAfterResolving('translator', function ($translator) {
        $translator->addPath(__DIR__.'/../lang');
    });
}