18 lines
280 B
PHP
18 lines
280 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models\Old;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Country extends Model
|
||
|
{
|
||
|
protected $table = 'ab_country';
|
||
|
|
||
|
/**
|
||
|
* The currency this country belongs to
|
||
|
*/
|
||
|
public function currency()
|
||
|
{
|
||
|
return $this->belongsTo('App\Models\Old\Currency');
|
||
|
}
|
||
|
}
|