Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// Migration $table->fullText(['title', 'body']); // Eloquent query Article::whereFullText(['title', 'body'], 'mysql performance')->get(); // With options Article::whereFullText(['title', 'body'], '+mysql -oracle', [ 'mode' => 'boolean', ])->get();
Result
Open