Support the ongoing development of Laravel.io →
Security Database Eloquent
Last updated 1 year ago.
0

You don't need to escape it. This is one of the reasons those helper methods are there - to take care of safe value binding. You only need to worry about escaping when you execute query manually or use DB::raw() method.

0

Correct. If you ever get a DB Query exception in Laravel, you can generally see the escaping that the framework does for you.

Last updated 9 years ago.
0

There is also one very useful method to check the queries that actually have been run:

DB::getQueryLog()

When I want to know what was the real query, I do this immediately after running a query:

die(last(DB::getQueryLog())['query']);
Last updated 9 years ago.
0

If that wasn't the solution, I don't know if one exists. hahaha. Awesome little tidbit right there.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

ottz0 ottz0 Joined 15 Nov 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.