1. Go to this page and download the library: Download jrmajor/laravel-fluent 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/ */
jrmajor / laravel-fluent example snippets
__('stream.shared-photos', [
'userName' => 'jrmajor',
'photoCount' => 2,
'userGender' => 'male',
]); // jrmajor added 2 new photos to his stream.
return [
/*
* In strict mode, exceptions will be thrown for syntax errors
* in .ftl files, unknown variables in messages etc.
* It's recommended to enable this setting in development
* to make it easy to spot mistakes.
*/
'strict' => env('APP_ENV', 'production') !== 'production',
/*
* Determines if it should use Unicode isolation marks (FSI, PDI)
* for bidirectional interpolations. You may want to enable this
* behaviour if your application uses right-to-left script.
*/
'use_isolating' => false,
];