File "Menu.php"

Full Path: /home/school/sites/sad3.ayagoz-roo.kz/core/app/Models/Menu.php
File size: 434 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Menu extends Model
{
    use HasFactory;

    public function subMenus()
    {
        return $this->hasMany('App\Models\Menu', 'father_id')->orderby('row_no', 'asc');
    }

    public function webmasterSection()
    {
        return $this->belongsTo('App\Models\WebmasterSection', 'cat_id');
    }
}