38 lines
703 B
PHP
38 lines
703 B
PHP
<?php
|
|
|
|
namespace Vanguard\Presenters;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Str;
|
|
|
|
abstract class Presenter
|
|
{
|
|
public function __construct(protected Model $model)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param $property
|
|
* @return bool
|
|
*/
|
|
public function __isset($property)
|
|
{
|
|
return method_exists($this, Str::camel($property));
|
|
}
|
|
|
|
/**
|
|
* @param $property
|
|
* @return mixed
|
|
*/
|
|
public function __get($property)
|
|
{
|
|
$camel_property = Str::camel($property);
|
|
|
|
if (method_exists($this, $camel_property)) {
|
|
return $this->{$camel_property}();
|
|
}
|
|
|
|
return $this->model->{Str::snake($property)};
|
|
}
|
|
}
|