laravel to sql code example
Example 1: print last sql query laravel
DB::enableQueryLog();
dd(DB::getQueryLog());
Example 2: laravel to sql
DB::table('users')->toSql()
Example 3: laravel sql query
use Illuminate\Support\Facades\DB;
$users = DB::select('select * from users');
foreach ($users as $user) {
echo $user->name;
}
Example 4: laravel get query in normal sql without bindings
public static function getEloquentSqlWithBindings($query)
{
return vsprintf(str_replace('?', '%s', $query->toSql()), collect($query->getBindings())->map(function ($binding) {
$binding = addslashes($binding);
return is_numeric($binding) ? $binding : "'{$binding}'";
})->toArray());
}
Example 5: Writing into the database with one click laravel
<!DOCTYPE html>
<html>
<head> </head>
<body> This should </body>
<br><br><br><br>
<form method="post">
<button type="button"> submit </button>
</form>
</html>