initial commit
This commit is contained in:
23
app/Http/Requests/SetCreditReportRequest.php
Normal file
23
app/Http/Requests/SetCreditReportRequest.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
|
||||
class SetCreditReportRequest extends ApiBaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
"email"=>"required|email",
|
||||
"password"=>"required",
|
||||
"package_id"=>"integer",
|
||||
"user_id"=>"integer",
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user