akaunting/app/Models/Common/Recurring.php
2018-04-26 02:17:55 +03:00

18 lines
237 B
PHP

<?php
namespace App\Models\Common;
use App\Models\Model;
class Recurring extends Model
{
/**
* Get all of the owning recurrable models.
*/
public function recurrable()
{
return $this->morphTo();
}
}