Response
Response is tiny PHP package which handles HTTP response, status codes and messages returned from different functions. Useful for unifiying API responses., (*1)
Installation
$ composer require jq/response
Laravel 5 Configuration
Add the following line to the providers
array in app/config.php
, (*2)
JunaidQadir\Response\ResponseServiceProvider::class
And the the following line to the aliases
array in app/config.php
, (*3)
'AjaxResponse' => JunaidQadir\Response\ResponseFacade::class
Standard PHP Usage
to return json in response of an AJAX request, (*4)
$response = new \JunaidQadir\Response\Response();
echo $response->json('success', 'Thank You');
exit;
Laravel5 Usage
echo AjaxResponse::json('success', 'Thank You');