Skip to content

Instantly share code, notes, and snippets.

@ldiebold
Last active June 5, 2019 10:07
Show Gist options
  • Save ldiebold/9dbdc7bb1eabb1865ca57bd7508e03c8 to your computer and use it in GitHub Desktop.
Save ldiebold/9dbdc7bb1eabb1865ca57bd7508e03c8 to your computer and use it in GitHub Desktop.
Laravel requests inflexible
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProjectBillRequest extends FormRequest
{
/**
* 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 [
"description" => "required|min:10",
"status" => "required"
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment