如何在我的請求文件中自定義我的驗證消息?在Laravel請求中自定義驗證消息
如何在規則旁添加消息? 我想要的就是像常見驗證一樣放置自定義消息。可能嗎?在請求中只進行正常的驗證方式?
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class ArticleRequest 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 [
'title' => 'required|min:5',
'content' =>'required',
'user_id' => 'required|numeric',
'category_id' => 'required|numeric',
'published_at' => 'required|date'
];
}
}
您可以通過命令行創建此自定義請求消息: 「php artisan make:request StoreArticleRequest」 StoreArticleRequest.php類位於app/Http/Requests目錄中。 –
@sagor Right ...雖然與問題(或答案)無關。 –