ProductTranslation.php 280 B

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