2024-07-07 09:10:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Casts;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class CollectionOrNull implements CastsAttributes
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Cast the given value.
|
|
|
|
*
|
|
|
|
* @param array<string, mixed> $attributes
|
|
|
|
*/
|
|
|
|
public function get(Model $model, string $key, mixed $value, array $attributes): mixed
|
|
|
|
{
|
|
|
|
return collect(json_decode($value, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the given value for storage.
|
|
|
|
*
|
|
|
|
* @param array<string, mixed> $attributes
|
|
|
|
*/
|
|
|
|
public function set(Model $model, string $key, mixed $value, array $attributes): mixed
|
|
|
|
{
|
2024-08-23 07:28:00 +00:00
|
|
|
return count($value) ? json_encode($value) : NULL;
|
2024-07-07 09:10:00 +00:00
|
|
|
}
|
|
|
|
}
|