43 lines
965 B
PHP
43 lines
965 B
PHP
<?php
|
|
|
|
namespace App\Casts;
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
|
|
class JsonArray implements CastsAttributes
|
|
{
|
|
/**
|
|
* Cast the given value.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Model $model
|
|
* @param string $key
|
|
* @param mixed $value
|
|
* @param array $attributes
|
|
* @return mixed
|
|
*/
|
|
public function get($model, string $key, $value, array $attributes)
|
|
{
|
|
$value = json_decode($value, true);
|
|
|
|
return is_array($value) ? $value : [];
|
|
}
|
|
|
|
/**
|
|
* Prepare the given value for storage.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Model $model
|
|
* @param string $key
|
|
* @param mixed $value
|
|
* @param array $attributes
|
|
* @return mixed
|
|
*/
|
|
public function set($model, string $key, $value, array $attributes)
|
|
{
|
|
if (! is_array($value)) {
|
|
$value = [];
|
|
}
|
|
|
|
return json_encode($value);
|
|
}
|
|
}
|