First code for the piggy bank API.

This commit is contained in:
James Cole
2018-06-29 06:43:44 +02:00
parent c8de1d3372
commit 12a84572e2
8 changed files with 214 additions and 28 deletions

View File

@@ -33,12 +33,17 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* Class PiggyBank.
*
* @property Carbon $targetdate
* @property Carbon $startdate
* @property string $targetamount
* @property int $id
* @property string $name
* @property Carbon $targetdate
* @property Carbon $startdate
* @property string $targetamount
* @property int $id
* @property string $name
* @property Account $account
* @property Carbon $updated_at
* @property Carbon $created_at
* @property int $order
* @property bool $active
* @property int $account_id
*
*/
class PiggyBank extends Model