23 lines
361 B
PHP
23 lines
361 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Contact extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The database table used by the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'contacts';
|
||
|
|
||
|
/**
|
||
|
* We shall set a blacklist of non-modifiable model attributes.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $guarded = ['id'];
|
||
|
}
|