/var/www/hkosl.com/littleark/webadmin/models/Country.php


1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

use Illuminate\Database\Capsule\Manager as DB;
use 
Carbon\Carbon as Carbon;

class 
Country extends BaseModel{
    protected 
$table "country";

    public function 
proProductSkuCountries(){
        return 
$this->hasMany('ProProductSkuCountry''country_code''code');
    }
}