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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

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

    public function language() {
        return $this->belongsTo('App\Language');
    }
}