Contact.php 403 Bytes
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Contact extends Model
{
    use HasFactory;

    protected  $fillable = ['email', 'telephone', 'title', 'title_t', 'description',
                'whatapp', 'telegram', 'title1', 'title2', 'title3', 'text1', 'text2', 'text3',
                'year', 'conf'
        ];

}