Directory : /home/aplikasiposinfo/www/reswara.aplikasipos.info/vendor/ichtrojan/laravel-otp/src/Models/ |
Current File : /home/aplikasiposinfo/www/reswara.aplikasipos.info/vendor/ichtrojan/laravel-otp/src/Models/Otp.php |
<?php namespace Ichtrojan\Otp\Models; use Illuminate\Database\Eloquent\Model; class Otp extends Model { /** * The database table used by the model. * * @var string */ protected $table = 'otps'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'identifier', 'token', 'valid', 'validity' ]; }