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