26 lines
457 B
PHP
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');
|
|
}
|
|
|
|
}
|