25 lines
401 B
PHP
25 lines
401 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ContactInfo extends Model
|
|
{
|
|
protected $table = 'contact_info';
|
|
|
|
protected $fillable = [
|
|
'title',
|
|
'description',
|
|
'name',
|
|
'address',
|
|
'phone',
|
|
'email',
|
|
'whatsapp',
|
|
'is_active'
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_active' => 'boolean'
|
|
];
|
|
}
|