Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 02:30
Show Gist options
  • Save jsdecena/0ccdc854b71434ac27bda257e19899d2 to your computer and use it in GitHub Desktop.
Save jsdecena/0ccdc854b71434ac27bda257e19899d2 to your computer and use it in GitHub Desktop.
Create Article Request Class
<?php
namespace App\Articles\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CreateArticleRequest extends FormRequest
{
/**
* Transform the error messages into JSON
*
* @param array $errors
* @return \Illuminate\Http\JsonResponse
*/
public function response(array $errors)
{
return response()->json($errors, 422);
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'title' => ['required'],
'content' => ['required']
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment