2020-06-29 06:50:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Contact extends Model
|
|
|
|
{
|
2020-06-29 08:30:09 +00:00
|
|
|
protected $fillable = [
|
2020-06-29 09:14:07 +00:00
|
|
|
'name_first', "name_last", 'email', 'phone'
|
2020-06-29 08:30:09 +00:00
|
|
|
];
|
2020-06-29 06:50:50 +00:00
|
|
|
}
|