CustomerProductTranslation.php 291 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomerProductTranslation extends Model
  5. {
  6. protected $fillable = ['customer_product_id', 'name', 'lang'];
  7. public function customer_product(){
  8. return $this->belongsTo(CustomerProduct::class);
  9. }
  10. }