How to Execute mysql Query in Laravel?
Sometimes, we require to run directly mysql query on Laravel for example if you need to copy one table to other table using mysql query. I also need in one project and that's why i am fetching problem. But you can use sql query on laravel using db statement in bellow example you can learn how to run.
Example:
DB::statement("
INSERT INTO `posts` (repost_of_id,token_id,post_details,user)
SELECT id,token_id,post_details,".$loginUserId."
FROM `posts` where id = ".$postId."
");

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.