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

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

declare(strict_types=1);

namespace App\Models;

/**
 * Class Notice
 *
 * @property int    $id
 * @property string $type
 * @property string $name
 * @property string $text
 * @property int    $user_id
 * @property int    $created_at
 * @property int    $updated_at
 * @property int    $protect
 */
class Notice extends BaseModel
{
    /**
     * Indicates if the model should be timestamped.
     */
    public $timestamps = false;

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