added feature for OTP-SMS Koperasi

This commit is contained in:
Hafifie PKB
2024-03-25 21:40:03 +08:00
committed by nurafrinaalimi16
parent 1d892b064e
commit c657eafc70
13 changed files with 475 additions and 24 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class UserOTP extends Model
{
protected $table = 'user_login_otp';
protected $fillable = ['id', 'nokp','telefon', 'token', 'created_at','expired_at'];
public $timestamps = false;
}