vito/app/Models/AbstractModel.php
Saeed Vaziry f6bc04763b
2.x
2024-09-27 20:36:03 +02:00

28 lines
573 B
PHP
Executable File

<?php
namespace App\Models;
use App\Traits\HasTimezoneTimestamps;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property Carbon $created_at
* @property Carbon $updated_at
*/
abstract class AbstractModel extends Model
{
use HasTimezoneTimestamps;
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();
}
}
}