%PDF- %PDF-
Direktori : /var/www/html/digiprint/app/Models/ |
Current File : /var/www/html/digiprint/app/Models/Technology.php |
<?php namespace Digiprint\Models; class Technology extends BaseModel { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'description', 'order' ]; protected $guarded = []; /** * @return \Illuminate\Database\Eloquent\Relations\MorphOne */ public function media() { return $this->morphOne(Media::class, 'model'); } }