edms2023/app/Contact.php

19 lines
362 B
PHP
Raw Permalink Normal View History

2023-09-14 20:59:46 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'contacts';
protected $fillable = [
'organization_name', 'alternative_name', 'address', 'telephone_number', 'notes', 'status', 'is_approved',
];
}