PHP code example of reptily / sql-to-laravel-builder
1. Go to this page and download the library: Download reptily/sql-to-laravel-builder 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/ */
reptily / sql-to-laravel-builder example snippets
use RexShijaku\SQLToLaravelBuilder\SQLToLaravelBuilder;
ravelBuilder($options);
$sql = "SELECT COUNT(*) FROM members";
echo $converter->convert($sql);
DB::table('members')->count();
$sql = "SELECT
department_id,
count(*)
FROM
members
LEFT JOIN details AS d ON d.member_id = members.member_id
WHERE
( age = 25 OR ( salary = 2000 AND gender = 'm' ) )
AND id > 15
GROUP BY
department_id
HAVING
height > 1.60";
echo $converter->convert($sql);