Skip to content

Instantly share code, notes, and snippets.

@elton-fonseca
Created November 16, 2016 19:13
Show Gist options
  • Save elton-fonseca/6ee3c262660da21b7142a18a7b6232b5 to your computer and use it in GitHub Desktop.
Save elton-fonseca/6ee3c262660da21b7142a18a7b6232b5 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class CauseRequest extends Request
{
/**
* 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 [
'cause' => 'required'
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment