started recurring

This commit is contained in:
denisdulici
2018-04-26 02:17:55 +03:00
parent 89f56079d1
commit ad202645b8
6 changed files with 96 additions and 12 deletions

View File

@ -0,0 +1,17 @@
<?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();
}
}