我正在向我的桌子发布一些数据。
由于我的帖子数据非常大,有没有办法检查是否所有值都已过帐?然后才将其插入数据库。
或者也许尝试插入它,让数据库处理它?</ p>
提前谢谢。
答案 0 :(得分:1)
您可以使用require属性验证请求 示例
class CreateNotebookRequest 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 [
'modelName' => 'required',
....