29 lines
576 B
PHP
29 lines
576 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class ManageAboutUs extends Model
|
|
{
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
protected $dates = ['deleted_at'];
|
|
|
|
// protected $table = 'manage_about_us';
|
|
// protected $fillable = [
|
|
// 'user_id',
|
|
// 'name',
|
|
// 'email_id',
|
|
// 'contact_number',
|
|
// 'subject',
|
|
// 'type',
|
|
// 'message',
|
|
// 'is_reply',
|
|
// 'is_active'
|
|
// ];
|
|
|
|
}
|