all feature

This commit is contained in:
antv
2026-06-29 11:55:33 +07:00
parent 08d13336cd
commit 8a77324f89
59 changed files with 5587 additions and 145 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Administration extends Model
{
use HasFactory;
const MAX_SEND_CARD_PER_MONTH = 5;
protected $table = 'administration';
protected $fillable = [
'msnv',
'received',
'sender',
'sent',
'receiver',
'date',
];
}