PHP code example of shishima / dynamic-view-value-render
1. Go to this page and download the library: Download shishima/dynamic-view-value-render 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/ */
shishima / dynamic-view-value-render example snippets
namespace App\Transform;
use Illuminate\Support\Arr;
use Shishima\ConvertExport\Pipeline\ConvertExportBase;
class Transform extends ConvertExportBase
{
public function convertUpper($payload) {
// ...
}
public function convertLower($payload) {
// ...
}
}