ManageRepairRequest.php
598 Bytes
<?php
/**
* Created by PhpStorm.
* User: cheng
* Date: 2018/7/25
* Time: 14:49
*/
namespace App\Http\Requests\Backend\Repair;
use App\Http\Requests\Request;
class ManageRepairRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return access()->allow('manage-repair');
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}