| Current Path : /home/zada/public_html/app/Models/ |
| Current File : /home/zada/public_html/app/Models/CustomerProductTranslation.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
class CustomerProductTranslation extends Model
{
use PreventDemoModeChanges;
protected $fillable = ['customer_product_id', 'name', 'lang'];
public function customer_product(){
return $this->belongsTo(CustomerProduct::class);
}
}