Products.php 220 B

12345678910111213
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Products extends Model
  5. {
  6. public function employees_infs()
  7. {
  8. return $this->belongsTo(Empoyees_inf::class, 'product_id', 'id');
  9. }
  10. }