17 lines
277 B
PHP
17 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Contact extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'contact_name',
|
|
'contact_email',
|
|
'contact_phone',
|
|
'contact_content',
|
|
'contact_status'
|
|
];
|
|
} |