mivita/app/Models/ShippingCountry.php
2019-01-07 00:15:41 +01:00

26 lines
457 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ShippingCountry extends Model
{
protected $table = 'shipping_countries';
protected $fillable = [
'shipping_id', 'country_id'
];
public function shipping()
{
return $this->belongsTo('App\Models\Shipping', 'shipping_id');
}
public function country()
{
return $this->belongsTo('App\Models\Country', 'country_id');
}
}