PHP code example of think.studio / laravel-json-field-cast
1. Go to this page and download the library: Download think.studio/laravel-json-field-cast library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
think.studio / laravel-json-field-cast example snippets
namespace App\Casts;
use JsonFieldCast\Casts\AbstractMeta;
class FormMeta extends AbstractMeta
{
protected function metaClass(): string
{
return \App\Casts\Json\FormMeta::class;
}
}
namespace App\Casts\Json;
use JsonFieldCast\Json\AbstractMeta;
class FormMeta extends AbstractMeta
{
public function myCustomMethod(): int {
return ((int) $this->getAttribute('foo.bar', 0)) + 25;
}
}
/**
* @property \App\Casts\Json\FormMeta $meta
*/
class Form extends Model
{
protected $casts = [
'meta' => \App\Casts\FormMeta::class,
];
}
$form = Form::find(123);
$form->meta->getAttribute('foo.bar', 0);
$form->meta->myCustomMethod();
namespace App\Casts;
use JsonFieldCast\Casts\AbstractMeta;
class FormMeta extends AbstractMeta
{
protected function metaClass(): string
{
return \App\Casts\Json\AbstractFormMeta::class;
}
}
namespace App\Casts\Json;
use JsonFieldCast\Json\AbstractMeta;
abstract class AbstractFormMeta extends AbstractMeta
{
public static function getCastableClassByModel(Model $model, array $data = []): ?string
{
return ($model->meta_type && class_exists($model->meta_type))
? $model->meta_type
: null;;
}
}