11/5/2022

This commit is contained in:
Nguyễn Tiến Dũng
2022-05-11 21:09:39 +07:00
parent 96e0513959
commit 3d31201a05
117 changed files with 38921 additions and 595 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HistoryDayMission extends Model
{
use HasFactory;
protected $fillable = [
'phone',
'amount',
'level',
'receive',
'status',
'pay'
];
}

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HistoryPlay extends Model
{
use HasFactory;
protected $fillable = [
'tranId',
'partnerName',
'partnerId',
'comment',
'amount',
'receive',
'status',
'pay',
'game',
'phoneSend'
];
}

View File

@@ -8,4 +8,14 @@ use Illuminate\Database\Eloquent\Model;
class Momo extends Model
{
use HasFactory;
protected $fillable = [
'phone',
'password',
'min',
'max',
'info',
'times',
'amount',
'status'
];
}

43
app/Models/Setting.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model
{
use HasFactory;
protected $fillable = [
'name',
'keywords',
'logo',
'description',
'favicon',
'background',
'active',
'history',
'only_win',
'limit',
'day_mission',
'week_top',
'note',
'ads',
'gift_day',
'gift_week',
'hu',
'content',
'content_day',
'content_week',
'ratioCL',
'ratioCL2',
'ratioTX',
'ratioTX2',
'ratio1P3',
'ratioG3',
'ratioH3',
'ratioLO',
'color',
'level_day'
];
}