45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class UserRegister
|
|
*
|
|
* @property string $identifier
|
|
* @property string $instance
|
|
* @property string $content
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @package App\Models
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereContent($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereIdentifier($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereInstance($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class UserRegister extends Model
|
|
{
|
|
protected $table = 'user_registers';
|
|
public $incrementing = false;
|
|
|
|
protected $casts = [
|
|
'content' => 'object'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'identifier', 'instance', 'content'
|
|
];
|
|
|
|
|
|
}
|