Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
app
/
Models
/
Filename :
Otp.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Otp extends Model { protected $table = 'id'; protected $primaryKey = 'client_req_id'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'client_req_id', 'number', 'email', 'type', 'otp', 'uuid', 'retry', 'status', 'created_at', 'updated_at' ]; }