Mysql
 sql >> Database >  >> RDS >> Mysql

Laravel:come aggiungere la clausola where usando il generatore di query?

Puoi provare qualcosa del genere

$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();

Inoltre, controlla questa risposta .