faithgen /
miscellaneous
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Faithgen\Miscellaneous\Models; |
||
| 4 | |||
| 5 | use FaithGen\SDK\Models\UuidModel; |
||
| 6 | use Illuminate\Notifications\Notifiable; |
||
| 7 | |||
| 8 | class Subscription extends UuidModel |
||
| 9 | { |
||
| 10 | use Notifiable; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 11 | |||
| 12 | protected $table = 'fg_subscriptions'; |
||
| 13 | } |
||
| 14 |