laravel-learn-bbs/app/Http/Requests/Api/TopicRequest.php
2018-06-10 18:35:53 +08:00

57 lines
1.2 KiB
PHP

<?php
namespace App\Http\Requests\Api;
use Illuminate\Foundation\Http\FormRequest;
/**
* Class TopicRequest
* @property string title
* @property string body
* @property int category_id
* @package App\Http\Requests\Api
*/
class TopicRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
public function rules()
{
switch ($this->method()) {
case 'POSt':
return [
'title' => 'required|string',
'body' => 'required|string',
'category_id' => 'required|exists:categories,id',
];
case 'PATCH':
return [
'title' => 'string',
'body' => 'string',
'category' => 'exists:categories,id'
];
default:
return [];
}
}
public function attributes()
{
return [
'title' => '标题',
'body' => '话题内容',
'category_id' => '分类',
];
}
}