sql >> Base de Datos >  >> RDS >> Mysql

Laravel:¿cómo agregar la cláusula where usando el generador de consultas?

Puedes probar algo como esto

$query =  DB::table('elements');
$query->where('some_field', 'some_value');

// Conditionally add another where
if($type) $query->where('type', 1);

// Conditionally add another where
if($lang) $query->where('lang', 'EN');

$rows = $query->get();

Además, consulte esta respuesta .