Ekapp/skolehjem/app/Contact.php

13 lines
183 B
PHP
Raw Normal View History

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 = [
'name_first', "name_last", 'email', 'phone'
2020-06-29 08:30:09 +00:00
];
2020-06-29 06:50:50 +00:00
}