mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
init
This commit is contained in:
24
app/Models/AbstractModel.php
Executable file
24
app/Models/AbstractModel.php
Executable file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property Carbon $created_at
|
||||
* @property Carbon $updated_at
|
||||
*/
|
||||
abstract class AbstractModel extends Model
|
||||
{
|
||||
public function jsonUpdate(string $field, string $key, mixed $value, bool $save = true): void
|
||||
{
|
||||
$current = $this->{$field};
|
||||
$current[$key] = $value;
|
||||
$this->{$field} = $current;
|
||||
if ($save) {
|
||||
$this->save();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user