PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Casts
<?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 * @return object|string */ 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; } }; } }
[-] Attribute.php
[edit]
[+]
..
[-] AsArrayObject.php
[edit]
[-] AsCollection.php
[edit]
[-] ArrayObject.php
[edit]
[-] AsEncryptedCollection.php
[edit]
[-] AsEncryptedArrayObject.php
[edit]
[-] .htaccess
[edit]
[-] AsStringable.php
[edit]