DM
Size: a a a
DM
DM
DM
AK
AK
RV
public static function boot()
{
parent::boot();
$categoryId = Category::where(['name' => Category::CATEGORY_SHAMPOO])->first()->id;
static::creating(function ($model) use ($categoryId) {
$model->category_id = $categoryId;
});
}
AK
AK
RV
AK
public static function boot()
{
parent::boot();
$categoryId = Category::where(['name' => Category::CATEGORY_SHAMPOO])->first()->id;
static::creating(function ($model) use ($categoryId) {
$model->category_id = $categoryId;
});
}
RV
AK
RV
AK
DM
AK
DM
RV
RV
DM