FleetCart/Modules/Product/Entities/SearchTerm.php

16 lines
252 B
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Product\Entities;
use Modules\Support\Eloquent\Model;
class SearchTerm extends Model
{
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}