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