Upload.php 354 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Packages\Product\Models\Product;
  5. class Upload extends Model
  6. {
  7. protected $guarded = [];
  8. // protected $fillable = ['name', 'path', 'mime_type', 'extension', 'uploadable_type', 'uploadable_id'];
  9. public function uploadable()
  10. {
  11. return $this->morphTo();
  12. }
  13. }