1234567891011121314 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ProductTranslation extends Model
- {
- protected $fillable = ['product_id', 'name', 'unit', 'description', 'lang'];
- public function product(){
- return $this->belongsTo(Product::class);
- }
- }
|