Skip to content

Commit

Permalink
Requests
Browse files Browse the repository at this point in the history
  • Loading branch information
CoderTH committed Sep 20, 2020
1 parent 7ac0c72 commit a638138
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions app/Http/Requests/Test/TestRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

namespace App\Http\Requests\Test;

use Illuminate\Foundation\Http\FormRequest;

class TestRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return false;
}

/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}

0 comments on commit a638138

Please sign in to comment.