2017-12-12 05:28:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Country extends Model
|
|
|
|
{
|
2018-05-20 12:53:14 +00:00
|
|
|
protected $table = 'ab_country';
|
2017-12-12 05:28:49 +00:00
|
|
|
public $timestamps = FALSE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The currency this country belongs to
|
|
|
|
*/
|
|
|
|
public function currency()
|
|
|
|
{
|
2018-05-20 12:53:14 +00:00
|
|
|
return $this->belongsTo(Currency::class);
|
2017-12-12 05:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The accounts in this country
|
|
|
|
*/
|
|
|
|
public function users()
|
|
|
|
{
|
2018-05-20 12:53:14 +00:00
|
|
|
return $this->hasMany(\App\User::class);
|
2017-12-12 05:28:49 +00:00
|
|
|
}
|
|
|
|
}
|