Files
nl-mall-api/app/Models/ProductLabelModel.php

18 lines
270 B
PHP
Raw Permalink Normal View History

2025-05-19 16:54:25 +08:00
<?php
namespace App\Models;
use App\BaseApp\BaseModel;
class ProductLabelModel extends BaseModel
{
protected $table = 'product_label';
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $guarded = [];
}