2022-03-14 16:22:30 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Illuminate\Database\Eloquent\Casts;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\Castable;
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
class AsStringable implements Castable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the caster class to use when casting from / to this cast target.
|
|
|
|
*
|
|
|
|
* @param array $arguments
|
2023-02-24 06:26:40 -05:00
|
|
|
* @return CastsAttributes<\Illuminate\Support\Stringable, string|\Stringable>
|
2022-03-14 16:22:30 -04:00
|
|
|
*/
|
|
|
|
public static function castUsing(array $arguments)
|
|
|
|
{
|
|
|
|
return new class implements CastsAttributes
|
|
|
|
{
|
|
|
|
public function get($model, $key, $value, $attributes)
|
|
|
|
{
|
|
|
|
return isset($value) ? Str::of($value) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($model, $key, $value, $attributes)
|
|
|
|
{
|
|
|
|
return isset($value) ? (string) $value : null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|