10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class FinanceNotificationPreference extends BaseModel
|
|
{
|
|
protected $guarded = [];
|
|
protected $table = 'finance_notification_preferences';
|
|
}
|