PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
MediaCollections
/
Models
/
Concerns
/
Editing: CustomMediaProperties.php
<?php namespace Spatie\MediaLibrary\MediaCollections\Models\Concerns; trait CustomMediaProperties { public function setCustomHeaders(array $customHeaders): self { $this->setCustomProperty('custom_headers', $customHeaders); return $this; } public function getCustomHeaders(): array { return $this->getCustomProperty('custom_headers', []); } }
SAVE
CANCEL