|
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <meta name="description" content="Convert SQL to Laravel query builder. Laravel where nested. laravel where in subquery. laravel join subquery."> |
| 7 | + <title>SQL to Laravel Builder</title> |
| 8 | + <link href="https://cdn.bootcss.com/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet"> |
| 9 | + <link href="https://cdn.bootcss.com/bulma/0.7.5/css/bulma.min.css" rel="stylesheet"> |
| 10 | + <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9087401435839175" crossorigin="anonymous"></script> |
| 11 | + <!-- Global site tag (gtag.js) - Google Analytics --> |
| 12 | + <script async src="https://www.googletagmanager.com/gtag/js?id=G-Z93ZQ8Z1M6"></script> |
| 13 | + <script> |
| 14 | + window.dataLayer = window.dataLayer || []; |
| 15 | + function gtag(){dataLayer.push(arguments);} |
| 16 | + gtag('js', new Date()); |
| 17 | + |
| 18 | + gtag('config', 'G-Z93ZQ8Z1M6'); |
| 19 | + </script> |
| 20 | +<script defer src="/runtime.3daa794a3fecbc319e53.js"></script><script defer src="/npm.sqlparser-rs-wasm.6e8240a644fa80f21f0d.js"></script><script defer src="/main.e7f74785efff08762c6d.js"></script></head> |
| 21 | +<body> |
| 22 | + |
| 23 | +<section class="hero is-primary is-small"> |
| 24 | + |
| 25 | + <div class="hero-body"> |
| 26 | + <div class="container has-text-centered"> |
| 27 | + <h1 class="title"> |
| 28 | + Convert Your Legacy SQL to Laravel Query Builder |
| 29 | + </h1> |
| 30 | + </div> |
| 31 | + </div> |
| 32 | +</section> |
| 33 | +<div style="margin-left: 20px;"> |
| 34 | + <a target="_blank" href="https://github.com/sql2builder/sql2builder.github.io">Github</a> |
| 35 | +</div> |
| 36 | + |
| 37 | +<div> |
| 38 | + <div class="columns is-mobile is-centered"> |
| 39 | + <div class="column is-two-thirds"> |
| 40 | + <div class="content-area"> |
| 41 | + <div class="box box-offset"> |
| 42 | + |
| 43 | + <div class="field"> |
| 44 | + <div class="control"> |
| 45 | + <textarea class="textarea" name="sql" rows="10" placeholder="Enter Your Sql" id="input"></textarea> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div class="level-left"> |
| 50 | + <div class="level-item has-text-centered"> |
| 51 | + <button class="button is-primary" id="convert-button"> |
| 52 | + Convert |
| 53 | + </button> |
| 54 | + </div> |
| 55 | + <div class="level-item has-text-centered"> |
| 56 | + <button class="button" id="share-button"> |
| 57 | + Share |
| 58 | + </button> |
| 59 | + </div> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + |
| 63 | + <div class="box box-offset"> |
| 64 | + <div class="field"> |
| 65 | + <div class="control"> |
| 66 | + <textarea class="textarea" name="sql" rows="10" placeholder="Output" id="output"></textarea> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | +</div> |
| 74 | +<input style="display: none;" id="base64sql"></input> |
| 75 | +<script src="./bootstrap.js"></script> |
| 76 | +</body> |
| 77 | +</html> |
0 commit comments