SQLtoEloquent is an app that let's you convert SQL Statements into Laravel Eloquent Query Builders.
You can use the app here.
SQL Statement:
SELECT * FROM users WHERE age > 7;
Output:
DB::table("users")
->where("age", ">", "7")
->get();
Does this tool helped you in a way? You can help the developer too.
You can Donate any amount so he can maintain this tool and his future works.
Found bugs? Submit an issue here.