Files
cheerstothe_season_2.0/app/Models/Faq.php

24 lines
471 B
PHP
Raw Normal View History

2024-05-24 13:32:51 +05:30
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
2024-05-27 12:10:55 +05:30
use Illuminate\Database\Eloquent\SoftDeletes;
2024-05-24 13:32:51 +05:30
class Faq extends Model
{
2024-05-27 12:10:55 +05:30
use SoftDeletes;
2024-05-24 13:32:51 +05:30
use HasFactory;
protected $table = 'faqs';
protected $fillable = ['question', 'answers', 'faq_category_id'];
public function faqCategory()
{
return $this->belongsTo(MainCategory::class, 'faq_category_id', 'id');
}
}