akaunting/app/Models/Common/Recurring.php

18 lines
237 B
PHP
Raw Normal View History

2018-04-26 02:17:55 +03:00
<?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();
}
}