for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Innoflash\Events\Http\Resources;
use FaithGen\SDK\Helpers\ImageHelper;
use Illuminate\Http\Resources\Json\JsonResource;
class Guest extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
return array_merge(parent::toArray($request), [
'avatar' => ImageHelper::getImage('events', $this->image, config('faithgen-sdk.ministries-server')),
image
Innoflash\Events\Http\Resources\Guest
__get
]);
}