PHP code example of signifly / laravel-api-responder
1. Go to this page and download the library: Download signifly/laravel-api-responder 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/ */
signifly / laravel-api-responder example snippets
use Signifly\Responder\Concerns\Respondable;
class ProductController extends Controller
{
use Respondable;
public function index()
{
$paginator = Product::paginate();
return $this->respond($paginator);
}
public function store(Request $request)
{
$product = Product::create($request->all());
return $this->respond($product->fresh())
->setStatusCode(201); // responds with a 201 status code
}
public function show(Product $product)
{
return $this->respond($product);
}
public function destroy(Product $product)
{
$product->delete();
return $this->respond($product); // return an empty 204 json response
}
}
return [
/*
* The namespace to use when resolving resources.
*/
'namespace' => 'App\\Http\\Resources',
/*
* Force the usage of resources.
*
* It will throw a ResourceNotFoundException
* if it does not resolve a resource.
*/
'force_resources' => false,
/*
* Indicates if the resources uses a naming convention with a type suffix.
*
* If it is set to true it will try to resolve `UserResource`.
*/
'use_type_suffix' => false,
];
use Signifly\Responder\Facades\Responder;
class ProductController
{
public function show(Product $product)
{
return Responder::respond($product);
}
}
use Signifly\Responder\Concerns\Respondable;
class ProductController
{
use Respondable;
public function show(Product $product)
{
return $this->respond($product);
}
}
use Signifly\Responder\Contracts\Responder;
class ProductController
{
public function show(Product $product, Responder $responder)
{
return $responder->respond($product);
}
}