firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\FAQ\app\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\SoftDeletes;
use Modules\FAQ\Database\factories\FaqFactory;
class Faq extends Model
{
// use HasFactory;
use SoftDeletes;
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'uuid',
'question',
'answer',
'ordering',
'status'
];
// protected static function newFactory(): FaqFactory
// {
// //return FaqFactory::new();
// }
}