20 lines
245 B
PHP
Executable file
20 lines
245 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Eloquent;
|
|
|
|
/**
|
|
* Class ExpenseCategory.
|
|
*/
|
|
class LookupContact extends LookupModel
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'lookup_account_id',
|
|
'contact_key',
|
|
];
|
|
|
|
}
|