File: /home/u435929562/domains/builder.projectcop.com/public_html/larabuilder/larabuilder/app/Product.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'products';
protected $guarded = [];
public function supplier()
{
return $this->belongsTo('App\Supplier',"supplier_id")->withDefault();
}
public function tax()
{
return $this->belongsTo('App\Tax',"tax_id")->withDefault();
}
}