osb/app/Models/Country.php

26 lines
379 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Country extends Model
{
public $timestamps = FALSE;
/**
* The currency this country belongs to
*/
public function currency()
{
return $this->belongsTo('App\Models\Currency');
}
/**
* The accounts in this country
*/
public function users()
{
return $this->hasMany('App\User');
}
}