<?php
use Carbon\Carbon;
$now = Carbon::now()->format('d/m/Y');
printf("Today is %s\nCurrent PHP version: %s \n\n", $now, phpversion());
// Select using Laravel
$sql = $db::select("select * from user_info where name in (?)",["'name','kk'"]);
print_r($sql);