1. Go to this page and download the library: Download flyingapesinc/deepsearch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$searchSchema = [
'fields' => ['title'], // Fields where you want to search in the main model
'relationships' => [ // Relationships, if any
[
'relationship' => 'comments', // Here you put name of the relationship
'fields' => 'comment', // And here the fields where you want to search in the related table
],
[
'relationship' => 'comments.user', // Use dot notation for inner relations
'fields' => ['name', 'lastname'],
]
]
];