raw select laravel
$results = DB::select('select * from users where id = :id', ['id' => 1]);
raw select laravel
$results = DB::select('select * from users where id = :id', ['id' => 1]);
DB::table('users')->get();
$users = DB::table('users')->get();
eloquent where raw
/*
whereRaw / orWhereRaw
The whereRaw and orWhereRaw methods can
be used to inject a raw "where" clause into your query.
These methods accept an optional array of bindings as their second argument:
*/
$orders = DB::table('orders')
->whereRaw('price > IF(state = "TX", ?, 100)', [200])
->get();
eloquent where raw
$query->whereRaw("(
LOWER(name) like '%". strtolower($search) ."%' OR
LOWER(sku) like '%". strtolower($search) ."%' OR
LOWER(codigo) like '%". strtolower($search) ."%' OR
LOWER(descricao_curta) like '%". strtolower($search) ."%'
)");
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us