|Package newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Package newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Package query() * @method static \Illuminate\Database\Eloquent\Builder|Package whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereDescription($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereIdentifier($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereIsActive($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|Package wherePrice($value) * @method static \Illuminate\Database\Eloquent\Builder|Package whereUpdatedAt($value) * @mixin \Eloquent */ class Package extends Model { protected $fillable = [ 'identifier', 'name', 'description', 'is_active', ]; public static function getAttributeLabel(string $attribute): string { return __('packages.fields.' . $attribute); } }