user-list

This commit is contained in:
xiaomlove
2021-04-17 19:01:33 +08:00
parent d734788363
commit 736d42cd5c
18 changed files with 699 additions and 803 deletions

View File

@@ -11,5 +11,15 @@ class NexusModel extends Model
public $timestamps = false;
/**
* 为数组 / JSON 序列化准备日期。
*
* @param \DateTimeInterface $date
* @return string
*/
protected function serializeDate(\DateTimeInterface $date)
{
return $date->format($this->dateFormat ?: 'Y-m-d H:i:s');
}
}

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

@@ -0,0 +1,33 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Support\Arr;
class Setting extends NexusModel
{
use HasFactory;
protected $fillable = ['name', 'value'];
public static function get($name = null)
{
static $settings;
if (is_null($settings)) {
$rows = self::query()->get(['name', 'value']);
foreach ($rows as $row) {
$value = $row->value;
$arr = json_decode($value, true);
if (is_array($arr)) {
$value = $arr;
}
Arr::set($settings, $row->name, $value);
}
}
if (is_null($name)) {
return $settings;
}
return Arr::get($settings, $name);
}
}

View File

@@ -11,16 +11,29 @@ class User extends Authenticatable
{
use HasFactory, Notifiable;
public $timestamps = false;
const STATUS_CONFIRMED = 'confirmed';
const STATUS_PENDING = 'pending';
/**
* 为数组 / JSON 序列化准备日期。
*
* @param \DateTimeInterface $date
* @return string
*/
protected function serializeDate(\DateTimeInterface $date)
{
return $date->format($this->dateFormat ?: 'Y-m-d H:i:s');
}
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
'email',
'password',
];
protected $fillable = ['username', 'email', 'password', 'secret', 'editsecret', 'added'];
/**
* The attributes that should be hidden for arrays.