feat: add app and database modules

This commit is contained in:
2026-05-21 16:05:11 +07:00
parent 37b7e783f5
commit fad70d096b
212 changed files with 23901 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Prunable;
class OtpCode extends Model
{
use Prunable;
protected $fillable = [
'identifier',
'code',
'expires_at',
'verified_at',
];
protected $casts = [
'expires_at' => 'datetime',
'verified_at' => 'datetime',
];
public function prunable(): Builder
{
return self::query()->where('expires_at', '<', now());
}
}