update 1.0.8.0
Commits for version update
This commit is contained in:
47
app/Http/Requests/helpdesk/PriorityRequest.php
Normal file
47
app/Http/Requests/helpdesk/PriorityRequest.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\helpdesk;
|
||||
|
||||
use App\Http\Requests\Request;
|
||||
|
||||
/**
|
||||
* BanlistRequest.
|
||||
*
|
||||
* @author Ladybird <info@ladybirdweb.com>
|
||||
*/
|
||||
class PriorityRequest 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 [
|
||||
|
||||
|
||||
'priority' => 'required|max:10',
|
||||
'status' => 'required',
|
||||
'priority_desc' => 'required|max:255',
|
||||
'priority_color' => 'required',
|
||||
'ispublic' => 'required',
|
||||
'priority_successfully_updated' => 'priority successfully updated',
|
||||
'priority_successfully_created!!!' => 'priority successfully created',
|
||||
|
||||
|
||||
|
||||
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user