File "ContactInquiry.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Models/ContactInquiry.php
File size: 898 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use App\Traits\DateFormatTrait;

class ContactInquiry extends Model
{
    use HasFactory, SoftDeletes, DateFormatTrait;

    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'contact_inquiry';

    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
        'name',
        'email',
        'subject',
        'message',
    ];

    public function getCreatedAtAttribute()
    {
        return $this->formatDateValue($this->getRawOriginal('created_at'));
    }

    public function getUpdatedAtAttribute()
    {
        return $this->formatDateValue($this->getRawOriginal('updated_at'));
    }

}