Product.php 186 B

123456789101112
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Product extends Model
  5. {
  6. public function categories(){
  7. return $this->belongsToMany('App\Category');
  8. }
  9. }