Illuminate\Database\Eloquent\Model::jsonSerialize PHP Method

jsonSerialize() public method

Convert the object into something JSON serializable.
public jsonSerialize ( ) : array
return array
    public function jsonSerialize()
    {
        return $this->toArray();
    }

Usage Example

Example #1
0
 function jsonSerialize()
 {
     return $this->model->jsonSerialize();
 }
All Usage Examples Of Illuminate\Database\Eloquent\Model::jsonSerialize
Model