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

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

declare(strict_types=1);

namespace App\Models;

/**
 * Class Login
 *
 * @property int id
 * @property int user_id
 * @property string ip
 * @property string brow
 * @property int created_at
 * @property int type
 */
class Login extends BaseModel
{
    public const AUTH   = 'auth';
    public const COOKIE = 'cookie';
    public const SOCIAL = 'social';

    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'login';

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

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

    public function getType()
    {
        return __('logins.' . $this->type);
    }
}