laravel-learn-bbs/app/Http/Requests/Api/TopicRequest.php

57 lines
1.2 KiB
PHP
Raw Normal View History

2018-06-10 10:04:03 +00:00
<?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()
{
2018-06-10 10:35:53 +00:00
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 [];
}
2018-06-10 10:04:03 +00:00
}
public function attributes()
{
return [
'title' => '标题',
'body' => '话题内容',
'category_id' => '分类',
];
}
}