• File: Bcategory.php
  • Full Path: /home/masbinta/public_html/core/app/Models/Bcategory.php
  • File size: 283 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Bcategory extends Model
{
    public function blogs()
    {
        return $this->hasMany('App\Models\Blog');
    }
    public function language() {
        return $this->belongsTo('App\Language');
    }
}