Файл app/Models/StickersCategory.php Вес запакованого файла 250b (250 b) Вес распакованого файла: 437b (437 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace App\Models;
/**
* Class StickersCategory
*
* @property int id
* @property string name
* @property int updated_at
* @property int created_at
*/
class StickersCategory extends BaseModel
{
/**
* Indicates if the model should be timestamped.
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*/
protected $guarded = [];
}