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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

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

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