Просмотр файла app/Models/Counter31.php

Размер файла: 587B
<?php

declare(strict_types=1);

namespace App\Models;

/**
 * Class Counter31
 *
 * @property int id
 * @property string period
 * @property int hosts
 * @property int hits
 */
class Counter31 extends BaseModel
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'counters31';

    /**
     * Indicates if the model should be timestamped.
     *
     * @var bool
     */
    public $timestamps = false;

    /**
     * The attributes that aren't mass assignable.
     *
     * @var array
     */
    protected $guarded = [];
}