Brand.php 343 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Shop\Brands;
  3. use App\Shop\Products\Product;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Brand extends Model
  6. {
  7. protected $fillable = ['name'];
  8. /**
  9. * @return \Illuminate\Database\Eloquent\Relations\HasMany
  10. */
  11. public function products()
  12. {
  13. return $this->hasMany(Product::class);
  14. }
  15. }