1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php namespace Illuminate\Database\Eloquent\Relations;
use Illuminate\Database\Eloquent\Builder;
class MorphPivot extends Pivot {
/** * Set the keys for a save update query. * * @param \Illuminate\Database\Eloquent\Builder $query * @return \Illuminate\Database\Eloquent\Builder */ protected function setKeysForSaveQuery(Builder $query) { $query->where($this->morphType, $this->getAttribute($this->morphType));
return parent::setKeysForSaveQuery($query); }
/** * Delete the pivot model record from the database. * * @return int */ public function delete() { $query = $this->getDeleteQuery();
$query->where($this->morphType, $this->getAttribute($this->morphType));
return $query->delete(); }
/** * Set the morph type for the pivot. * * @param string $morphType * @return \Illuminate\Database\Eloquent\Relations\MorphPivot */ public function setMorphType($morphType) { $this->morphType = $morphType;
return $this; }
}
|