Implement rule group API.

This commit is contained in:
James Cole
2018-06-30 18:10:54 +02:00
parent f13df7e605
commit 0502f2a4a5
5 changed files with 169 additions and 12 deletions

View File

@@ -26,6 +26,7 @@ use Carbon\Carbon;
use FireflyIII\User;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Collection;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
@@ -39,6 +40,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
* @property string $text
* @property int $id
* @property int $order
* @property Collection $rules
*/
class RuleGroup extends Model
{