12345678910111213141516171819 |
- <?php
- namespace App\Shop\Brands;
- use App\Shop\Products\Product;
- use Illuminate\Database\Eloquent\Model;
- class Brand extends Model
- {
- protected $fillable = ['name'];
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
- public function products()
- {
- return $this->hasMany(Product::class);
- }
- }
|