bookinventory/app/Models/Location.php

42 lines
946 B
PHP
Raw Permalink Normal View History

2020-12-21 07:09:34 +00:00
<?php
namespace App\Models;
2020-12-27 07:53:41 +00:00
use App\Services\Search\LocationConfigurator;
2020-12-26 10:46:23 +00:00
use Illuminate\Database\Eloquent\Model;
2020-12-27 07:53:41 +00:00
use ScoutElastic\Searchable;
2020-12-21 07:09:34 +00:00
2020-12-26 10:46:23 +00:00
class Location extends Model {
2020-12-21 07:09:34 +00:00
2020-12-27 07:53:41 +00:00
use Searchable;
protected $indexConfigurator = LocationConfigurator::class;
2020-12-21 07:09:34 +00:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
];
2020-12-27 00:34:07 +00:00
public function books() {
return $this->hasMany(Book::class);
}
2020-12-27 07:53:41 +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
}