Level 75
Just use as is, example: https://laracasts.com/discuss/channels/laravel/sql-native-to-query-builder
Bind your parameters.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
the query I want to excute in laravel in pure sql
SELECT p.id,title,post_content,image_dir,video_dir,p.created_at,first_name,last_name,profile_img FROM users AS u,posts AS p WHERE title like '%mo%' OR post_content like '%mo%' AND user_id=u.id
Please or to participate in this conversation.