2020-12-21 07:09:34 +00:00
< ? php
namespace App\Models ;
2020-12-26 10:46:23 +00:00
use App\Services\Search\BookConfigurator ;
use Illuminate\Database\Eloquent\Model ;
use ScoutElastic\Searchable ;
2020-12-21 07:09:34 +00:00
2020-12-26 10:46:23 +00:00
class Book extends Model {
use Searchable ;
protected $indexConfigurator = BookConfigurator :: class ;
2020-12-21 07:09:34 +00:00
/**
* The attributes that are mass assignable .
*
* @ var array
*/
protected $fillable = [
2020-12-26 10:46:23 +00:00
'location_id' , 'barcode' , 'name' ,
2020-12-21 07:09:34 +00:00
];
2020-12-26 10:46:23 +00:00
public function authors () {
return $this -> belongsToMany ( Author :: class , 'book_authors' );
2020-12-21 07:09:34 +00:00
}
public function location () {
return $this -> belongsTo ( Location :: class );
}
2020-12-26 10:46:23 +00:00
protected $mapping = [
'properties' => [
'name' => [
'type' => 'text' ,
// Also you can configure multi-fields, more details you can find here https://www.elastic.co/guide/en/elasticsearch/reference/current/multi-fields.html
'fields' => [
'raw' => [
'type' => 'keyword' ,
]
]
],
]
];
2020-12-21 07:09:34 +00:00
}