first commit
This commit is contained in:
22
app/Models/AttendanceSetting.php
Normal file
22
app/Models/AttendanceSetting.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AttendanceSetting extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $table ="attendance_settings";
|
||||
protected $fillable = [
|
||||
'win_rate',
|
||||
'bot_rate',
|
||||
'start_time',
|
||||
'end_time',
|
||||
'money_min',
|
||||
'money_max',
|
||||
'time_each',
|
||||
'setphonewin'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user