【Laravel】artisanのmake:scopeコマンドを解説

チートシート

Laravel 10.xのartisanの「make:scope」コマンドを解説します。

Description

新しいグローバルスコープクラスを作成します。
scope.stubを利用して作成されます。

Usage

php artisan make:scope [-f|--force] [--] <name>
Bash

Arguments

引数必須設営
name必須グローバルスコープクラス名

Options

オプション省略形必須説明
forcef-グローバルスコープが既に存在する場合でもクラスを作成

Examples

no options

php artisan make:scope FooScope
Bash
   INFO  Scope [app/Models/Scopes/FooScope.php] created successfully.
Plaintext
app/Models/Scopes/FooScope.php
<?php

namespace App\Models\Scopes;

use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Scope;

class FooScope implements Scope
{
    /**
     * Apply the scope to a given Eloquent query builder.
     */
    public function apply(Builder $builder, Model $model): void
    {
        //
    }
}
PHP

Stub

OptionStub file name
-scope.stub

Source

10.x

framework/src/Illuminate/Foundation/Console/ScopeMakeCommand.php at 10.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.

11.x

framework/src/Illuminate/Foundation/Console/ScopeMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.

コメント

タイトルとURLをコピーしました