Ved at bruge Eloquent kan du gøre følgende:
$match = "
match (
`title`,
`description`
) against (
?
IN BOOLEAN MODE
)";
$against = 'bar';
$sql->whereRaw($match, array($against));
$sql->orderByRaw($match . " DESC", array($against));
Det samme ville fungere med Query Builder, men så skal du lave en lille omskrivning.