17 lines
222 B
PHP
17 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Document extends Model
|
|
{
|
|
|
|
protected $fillable = ['name'];
|
|
|
|
public function documentable()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|