You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
795 B
37 lines
795 B
4 years ago
|
<?php
|
||
|
|
||
|
namespace {{ namespace }};
|
||
|
|
||
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
||
|
|
||
|
class {{ class }} 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.
|
||
|
*
|
||
|
* @param \Illuminate\Database\Eloquent\Model $model
|
||
|
* @param string $key
|
||
|
* @param mixed $value
|
||
|
* @param array $attributes
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function set($model, $key, $value, $attributes)
|
||
|
{
|
||
|
return $value;
|
||
|
}
|
||
|
}
|