File "FaqCategory.php"

Full Path: /home/isoftco/public_html/hrm/app/Models/FaqCategory.php
File size: 261 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class FaqCategory extends Model
{
    protected $table =  'faq_category';


    public function faq()
    {
        return $this->hasMany('App\Models\Faq', 'faq_category_id', 'id');
    }
}