Skip to content

Commit

Permalink
Feedback implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumiware committed Feb 25, 2019
1 parent afeefa5 commit bcd586f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion app/Models/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ class Subscription extends Model implements HasDeletionPolicy
'start_on' => 'datetime',
'end_on' => 'datetime',
'requested_on' => 'datetime',
'approved_on' => 'datetime',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
'approved_at' => 'datetime',
];

/**
Expand Down
7 changes: 4 additions & 3 deletions app/Models/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ class Transaction extends Model implements HasDeletionPolicy
*/
protected $casts = [
'occurred_on' => 'datetime',
'created_on' => 'datetime',
'updated_on' => 'datetime',
'approved_on' => 'datetime',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
'approved_at' => 'datetime',
];

/**
Expand Down

0 comments on commit bcd586f

Please sign in to comment.