Add ConfigCache model and migration
This commit is contained in:
parent
5d2f575984
commit
ba37a54a20
2 changed files with 48 additions and 0 deletions
14
app/Models/ConfigCache.php
Normal file
14
app/Models/ConfigCache.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ConfigCache extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'config_cache';
|
||||
public $fillable = ['*'];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue