1. Go to this page and download the library: Download satheez/api-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/ */
satheez / api-response example snippets
use App\Http\Requests\StoreUserRequest;
use App\Http\Resources\UserResource;
use App\Models\User;
use Illuminate\Http\JsonResponse;
final class UserController
{
public function store(StoreUserRequest $request): JsonResponse
{
$user = User::query()->create($request->validated());
return api_response()->created(
data: new UserResource($user),
message: 'User created successfully.',
);
}
public function show(User $user): JsonResponse
{
return api_response()->success(new UserResource($user));
}
public function destroy(User $user): JsonResponse
{
$user->delete();
return api_response()->deleted();
}
}