0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PHPAdvent Calendar 2024

Day 13

【Laravel】リクエストルールの書き方に気をつけましょう

Posted at

はじめに

本記事をごらんいただきありがとうございます。東京でバックエンドエンジニアとして勤務してる大野です。今回初めてのアドベントカレンダー参加なのですが、自分のスタンスは変えず私のいつも通りの投稿をしていきます。
今回はLaravelでカスタムリクエストを記述する際の僕の超凡ミスをご紹介します。初心者だと陥るミスかもなので、僕と同じミスは踏まないように自戒の意をこめて記事に残します。(ぼくはこのミスで数時間無駄にしました)

リクエストルールの記述

僕がやってしまったミスは以下のような記述です。

app/ruquests/SomethingRequest.php
<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class SomethingRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
     */
    public function rules(): array
    {
        return [
            'name' => ['required', 'unique:users, name'],
            
        ];
    }

    public function attributes()
    {
        return [
            'name' => '名前',
        ];
    }

    public function messages()
    {
        return [
            'name.required' => ':attributeは必須項目です。',
            'name.unique' => 'この:attributeはすでに存在します。'
         ];
    }
}

はい、普段Laravelやってる方なら気付きますよね。ここですね。

'name' => ['required', 'unique:users, name'],

unique:users,の後にスペース入っちゃってるんです。というか意図的に入れました。だってこっちの方が可読性上がるくないですか?:frowning2:
これやっちゃうと、nameにどんな値が入っていようがはじいちゃうんですよね。一生分からんって勢いでしたね当時は、、、今となればただの初心者あるあるの一つに過ぎませんでした。「バリデーションルールだけは間違ってないでしょ」って先入観がよくなかったです。あと、このご時世AIに聞けば一発でした。(お恥ずかしい)

終わり

皆さんはこんなミスしませんよね?でも、こうゆう超凡ミスって意外とやっちゃうのかな?とかも思ったので記事で共有させていただきました!僕の屍を超えていってください。
最後に、こちらの記事にて普段、僕がどのようなマインドでエンジニアリングしているか記載してます。よければ覗いてみてください!
本記事に間違い等があればご指摘いただけますと幸いです!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?