Files
izyim-api/app/DeliveryInfo.php
T
Zain Fauzan Rofie Azizi 8fe45348f5 relationship path fixed
2018-07-06 10:54:12 +08:00

30 lines
437 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Deliveryinfo extends Model
{
protected $fillable = [
'branch',
'deli_info',
'address',
'city',
'postcode',
'state',
'country',
'contact_person',
'contact_person_no',
'com_id'
];
public function company(){
return $this->belongsTo(App\Company);
}
}