Skip to content

Instantly share code, notes, and snippets.

@niladam
Forked from bayareawebpro/Resourceable.php
Created March 11, 2020 20:43
Show Gist options
  • Save niladam/21815a50b1712fac8018258432def2af to your computer and use it in GitHub Desktop.
Save niladam/21815a50b1712fac8018258432def2af to your computer and use it in GitHub Desktop.
<?php
namespace App\Concerns;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
trait Resourceable
{
public function toResourceArray(?string $class = null, ?Request $request = null): array
{
$class = $class ?: $this->resolveResourceName();
if (class_exists($class) && is_subclass_of($class, JsonResource::class)) {
return (new $class($this))->resolve($request);
}
return $this->toArray();
}
protected function resolveResourceName(): string
{
$reflect = new \ReflectionClass($this);
return "\\{$reflect->getNamespaceName()}\\Http\\Resources\\{$reflect->getShortName()}Resource";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment