24 lines
360 B
PHP
24 lines
360 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Contact extends Model
|
|
{
|
|
protected $fillable = [
|
|
'first_name',
|
|
'last_name',
|
|
'email',
|
|
'phone',
|
|
'mobile',
|
|
'position',
|
|
'notes',
|
|
'is_primary',
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_primary' => 'boolean',
|
|
];
|
|
}
|