PHP code example of rickgoemans / laravel-api-response-helpers
1. Go to this page and download the library: Download rickgoemans/laravel-api-response-helpers library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rickgoemans / laravel-api-response-helpers example snippets
use Rickgoemans\LaravelApiResponseHelpers\ApiResponse;
class ExampleController extends Controller {
public function default(): JsonResponse {
return ApiResponse::default([
'message' => 'This is an example',
], 200);
}
public function success(): JsonResponse {
return ApiResponse::success('Ths is an example', [
'user_id' => 1,
'name' => 'Rick Goemans',
], 200);
}
public function error(): JsonResponse {
return ApiResponse::error('Invalid data', [
'name' => [
'