15 lines
283 B
PHP
15 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PhoneVerification extends Model
|
|
{
|
|
protected $fillable = ['phone', 'otp', 'expires_at', 'verified'];
|
|
protected $casts = [
|
|
'expires_at' => 'datetime',
|
|
'verified' => 'boolean'
|
|
];
|
|
}
|