added source and owner to mediable
This commit is contained in:
parent
b7c7a1f09e
commit
78eeb8cb6f
@ -44,13 +44,17 @@ trait Media
|
|||||||
|
|
||||||
foreach ($tags as $tag) {
|
foreach ($tags as $tag) {
|
||||||
$attach = [];
|
$attach = [];
|
||||||
|
|
||||||
foreach ($ids as $id) {
|
foreach ($ids as $id) {
|
||||||
$attach[$id] = [
|
$attach[$id] = [
|
||||||
'company_id' => company_id(),
|
'company_id' => company_id(),
|
||||||
|
'created_from' => source_name(),
|
||||||
|
'created_by' => user_id(),
|
||||||
'tag' => $tag,
|
'tag' => $tag,
|
||||||
'order' => ++$increments[$tag],
|
'order' => ++$increments[$tag],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->media()->attach($attach);
|
$this->media()->attach($attach);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user