1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Models/Document.php

15 lines
189 B
PHP
Raw Normal View History

2019-04-28 07:31:32 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Document extends BaseModel
{
public function documentable()
{
return $this->morphTo();
}
}