for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Staudenmeir\EloquentJsonRelations\Casts;
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
class Uuid 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, $key, $value, $attributes)
return $value;
}
* Prepare the given value for storage.
public function set($model, $key, $value, $attributes)