Files
izyim-api/app/Shipmentitem.php
T
2018-06-05 16:20:30 +08:00

25 lines
396 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Shipmentitem extends Model
{
protected $fillable = [
'id',
'so_id',//shipping order
'sa_id',//shipment arrangement
];
public function so()
{
return $this->belongsTo('App\So');
}
public function shipment()
{
return $this->belongsTo('App\Shipment');
}
}