Skip to content

Instantly share code, notes, and snippets.

@sjardim
Created February 8, 2023 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjardim/ee644682b9ed064f9105a1b38cb8c780 to your computer and use it in GitHub Desktop.
Save sjardim/ee644682b9ed064f9105a1b38cb8c780 to your computer and use it in GitHub Desktop.
Laravel Meilisearch search with relationships
<?php
//https://serversideup.net/advanced-meilisearch-queries-with-laravel-scout/
$customers = Customer::search('Dan')
->query( function( $query ){
$query->with('invoices');
} )->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment