/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Resources
/
Upload File
HOME
<?php namespace Illuminate\Http\Resources; use Illuminate\Support\Collection; use JsonSerializable; class MergeValue { /** * The data to be merged. * * @var array */ public $data; /** * Create a new merge value instance. * * @param \Illuminate\Support\Collection|\JsonSerializable|array $data * @return void */ public function __construct($data) { if ($data instanceof Collection) { $this->data = $data->all(); } elseif ($data instanceof JsonSerializable) { $this->data = $data->jsonSerialize(); } else { $this->data = $data; } } }