mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-08 20:38:36 +00:00
13 lines
215 B
PHP
13 lines
215 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Settings extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'settings';
|
|
}
|