19 lines
362 B
PHP
19 lines
362 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Contact extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'contacts';
|
|
protected $fillable = [
|
|
'organization_name', 'alternative_name', 'address', 'telephone_number', 'notes', 'status', 'is_approved',
|
|
];
|
|
}
|