mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
15 lines
189 B
PHP
15 lines
189 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Document extends BaseModel
|
||
|
{
|
||
|
public function documentable()
|
||
|
{
|
||
|
return $this->morphTo();
|
||
|
}
|
||
|
|
||
|
}
|