13 lines
183 B
PHP
13 lines
183 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Contact extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name_first', "name_last", 'email', 'phone'
|
|
];
|
|
}
|