Looking to hire Laravel developers? Try LaraJobs

laravel-response-api maintained by victorandrad

Description
Adds JSON response to API in Laravel or Lumen projects
Last update
2019/07/15 13:52 (dev-master)
License
Links
Downloads
2
Tags

Comments
comments powered by Disqus

Response API

About

The laravel-response-api package allows you to standardize the responses of your api that will be consumed.

Installation

Require the victorandrad/laravel-response-api package in your composer.json and update your dependencies:

$ composer require victorandrad/laravel-response-api

Global usage

To use Response you must include it in your Controller, include the in the return of your method you want it to return:

public function User {
	//return success
	$json = //my object
	return Response::json(ResponseUtil::makeResponse('DONE', $json), Response::HTTP_OK);
	
	//return error
	$json = //my object
	return Response::json(ResponseUtil::makeError('NOT_FOUND', $json), Response::HTTP_NOT_FOUND);
}