1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Laravel】AuthServiceProviderでDBを扱う際の注意点

Last updated at Posted at 2025-03-18

はじめに

AuthServiceProvider内でテーブルのデータを扱う処理を書いていました。
それが原因でちょっとしたエラーに遭遇したので、残しておこうと思います。

エラーの発生状況

以下のように、AuthServiceProvider内でShop::all()を使って動的にGateを定義していました。

AuthServiceProvider.php
use App\Models\Shop;
use Illuminate\Support\Facades\Gate;
use App\Models\Admin;

public function boot()
{
    foreach (Shop::all() as $shop) {
        // 「shop-[店舗ID]」で店舗権限を実装
        Gate::define('shop-' . $shop->id, function (Admin $admin) use ($shop) {
            return $admin->hasShopAuth($shop->id);
        });
    }
}

検証環境にソースをデプロイし、php artisan migrateを実行。
すると以下のエラーが発生。

Illuminate\Database\QueryException

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bside_database.shops' doesn't exist (Connection: mysql, SQL: select * from `shops`)

原因

問題なのはShop::all()でした。
artisanコマンドの実行時には、AuthServiceProvider::boot()が呼ばれます。
php artisan migrateの実行時にAuthServiceProvider::boot()が呼ばれて、まだshopsテーブルが存在しない状態でShop::all()を実行してしまうことが原因でした。

自分の環境では既にshopsテーブルが存在したので事象は起きなかったのですが、検証環境でphp artisan migrateの実行時に発覚しました。

解決策

テーブルが存在する場合のみShop::all()を実行するように、Schema::hasTable()で判定を追加しました。

AuthServiceProvider.php
use Illuminate\Support\Facades\Schema;

public function boot()
{
    if (Schema::hasTable('shops')) {
        foreach (Shop::all() as $shop) {
            // 「shop-[店舗ID]」で店舗権限を実装
            Gate::define('shop-' . $shop->id, function (Admin $admin) use ($shop) {
                return $admin->hasShopAuth($shop->id);
            });
        }
    }
}

まとめ

LaravelのAuthServiceProvider内でテーブルのデータを使う場合は、Schema::hasTable()でテーブルの存在確認を行う。

告知

最後にお知らせとなりますが、イーディーエーでは一緒に働くエンジニアを
募集しております。詳しくは採用情報ページをご確認ください。

みなさまからのご応募をお待ちしております。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?