PHP code example of weckhawk / pretty-response

1. Go to this page and download the library: Download weckhawk/pretty-response 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/ */

    

weckhawk / pretty-response example snippets


use Weckhawk\PrettyResponse\ApiResponse;

return ApiResponse::success(\$users, 'Users fetched successfully');

\$paginatedUsers = User::paginate(15);

return ApiResponse::success(\$paginatedUsers);

return ApiResponse::notFound('User not found');

return ApiResponse::validationError([
    'email' => ['The email field is