Mails
This commit is contained in:
parent
68b9d1ff88
commit
b9c26d06d0
75 changed files with 2143 additions and 818 deletions
|
|
@ -33,14 +33,23 @@ class ServiceProvider extends Model
|
|||
protected $table = 'service_provider';
|
||||
public $timestamps = false;
|
||||
|
||||
public static $types = [
|
||||
'payment' => 'payment',
|
||||
'discount' => 'discount',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'dollar' => 'bool'
|
||||
];
|
||||
'dollar' => 'bool',
|
||||
'active' => 'bool',
|
||||
'contact_emails' => 'array'
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'dollar',
|
||||
'type'
|
||||
'type',
|
||||
'contact_emails',
|
||||
'active'
|
||||
];
|
||||
|
||||
public function service_provider_entries()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue