first commit

This commit is contained in:
2025-09-01 15:06:58 +02:00
commit d8b89fc4fe
5702 changed files with 1021992 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<?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)};
}
}