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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

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