feat: inisialisasi project kit v2
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class RemoteConfig extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'platform',
|
||||
'latest_version',
|
||||
'min_version',
|
||||
'maintenance_mode',
|
||||
'store_url',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'maintenance_mode' => 'boolean',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user