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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Gallery extends Model
{
    protected $guarded = [];

    public function gcategory()
    {
        return $this->belongsTo('App\Models\Gcategory', 'category_id');
    }

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