'bindings' => array ( 0 => NULL, 1 => '2020-12-31 12:18:02', 2 => '1114', ), code example
Example: laravel bindings query
$query = DB::table('table')->whereIn('some_field', [1,2,30]);
$sql = $query->toSql();
$bindings = $query->getBindings();
$query = DB::table('table')->whereIn('some_field', [1,2,30]);
$sql = $query->toSql();
$bindings = $query->getBindings();