Skip to content

Eloquent: 入門

簡介

Laravel 包含 Eloquent,這是一個物件關係對應器 (ORM),讓與資料庫的互動變得輕鬆愉快。使用 Eloquent 時,每個資料庫資料表都有一個對應的「模型 (Model)」,用於與該資料表進行互動。除了從資料庫資料表中檢索記錄外,Eloquent 模型還允許您在資料表中新增、更新和刪除記錄。

📌 備註

在開始之前,請確保已在應用程式的 config/database.php 設定檔中設定資料庫連線。有關設定資料庫的更多資訊,請參閱 資料庫設定文件

產生模型類別

首先,讓我們建立一個 Eloquent 模型。模型通常位於 app\Models 目錄中,並繼承 Illuminate\Database\Eloquent\Model 類別。您可以使用 make:model Artisan 命令 來產生一個新模型:

shell
php artisan make:model Flight

如果您想在產生模型時同時產生 資料庫遷移,可以使用 --migration-m 選項:

shell
php artisan make:model Flight --migration

您在產生模型時也可以產生其他各種類型的類別,例如 factories、seeders、policies、controllers 和 form requests。此外,這些選項可以組合在一起,一次建立多個類別:

shell
# Generate a model and a FlightFactory class...
php artisan make:model Flight --factory
php artisan make:model Flight -f

# Generate a model and a FlightSeeder class...
php artisan make:model Flight --seed
php artisan make:model Flight -s

# Generate a model and a FlightController class...
php artisan make:model Flight --controller
php artisan make:model Flight -c

# Generate a model, FlightController resource class, and form request classes...
php artisan make:model Flight --controller --resource --requests
php artisan make:model Flight -crR

# Generate a model and a FlightPolicy class...
php artisan make:model Flight --policy

# Generate a model and a migration, factory, seeder, and controller...
php artisan make:model Flight -mfsc

# Shortcut to generate a model, migration, factory, seeder, policy, controller, and form requests...
php artisan make:model Flight --all
php artisan make:model Flight -a

# Generate a pivot model...
php artisan make:model Member --pivot
php artisan make:model Member -p

檢視模型

有時候,僅僅透過瀏覽程式碼很難確定模型所有可用的屬性和關聯。您可以嘗試使用 model:show Artisan 命令,它能為模型的所有屬性和關聯提供一個方便的概覽:

shell
php artisan model:show Flight

Eloquent 模型慣例

make:model 指令產生的模型將被放置在 app/Models 目錄中。讓我們來看看一個基礎的模型類別,並討論一些 Eloquent 的關鍵慣例:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    // ...
}

資料表名稱

在看了上面的範例後,您可能注意到我們並沒有告訴 Eloquent 哪個資料庫資料表對應到我們的 Flight 模型。依照慣例,除非有明確指定其他名稱,否則類別名稱的「蛇形命名法 (snake case)」複數形式將被用作資料表名稱。因此,在這個例子中,Eloquent 會假設 Flight 模型將紀錄儲存在 flights 資料表中,而 AirTrafficController 模型則會儲存在 air_traffic_controllers 資料表中。

如果您的模型對應的資料表不符合此慣例,您可以透過在模型上定義 table 屬性來手動指定模型的資料表名稱:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'my_flights';
}

主鍵

Eloquent 同樣會假設每個模型對應的資料表都有一個名為 id 的主鍵欄位。如有必要,您可以在模型上定義一個受保護的 $primaryKey 屬性,以指定另一個作為模型主鍵的欄位:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The primary key associated with the table.
     *
     * @var string
     */
    protected $primaryKey = 'flight_id';
}

此外,Eloquent 假設主鍵是一個遞增的整數值,這意味著 Eloquent 會自動將主鍵轉換為整數。如果您希望使用非遞增或非數值的主鍵,您必須在模型上定義一個公開的 $incrementing 屬性並將其設定為 false

php
<?php

class Flight extends Model
{
    /**
     * Indicates if the model's ID is auto-incrementing.
     *
     * @var bool
     */
    public $incrementing = false;
}

如果您的模型主鍵不是整數,您應該在模型上定義一個受保護的 $keyType 屬性。此屬性的值應該為 string

php
<?php

class Flight extends Model
{
    /**
     * The data type of the primary key ID.
     *
     * @var string
     */
    protected $keyType = 'string';
}

「複合」主鍵

Eloquent 要求每個模型至少要有一個唯一識別的「ID」可以用作其主鍵。Eloquent 模型不支援「複合 (Composite)」主鍵。不過,除了資料表唯一識別的主鍵之外,您可以隨意地在資料表中增加額外的多欄位唯一索引 (unique indexes)。

UUID 與 ULID 金鑰

您可以選擇使用 UUID 而不是使用自動遞增的整數作為 Eloquent 模型的主鍵。UUID 是長度為 36 個字元的通用唯一英數字識別碼。

如果您希望模型使用 UUID 金鑰而非自動遞增的整數金鑰,您可以在模型上使用 Illuminate\Database\Eloquent\Concerns\HasUuids trait。當然,您應該確保模型擁有 對應的 UUID 主鍵欄位

php
use Illuminate\Database\Eloquent\Concerns\HasUuids;
use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    use HasUuids;

    // ...
}

$article = Article::create(['title' => 'Traveling to Europe']);

$article->id; // "018f2b5c-6a7f-7b12-9d6f-2f8a4e0c9c11"

預設情況下,HasUuids trait 會為您的模型產生 UUIDv7 識別碼。由於這些 UUID 可以按字典順序排序,因此在索引資料庫儲存時更有效率。

您可以透過在模型上定義 newUniqueId 方法來覆寫特定模型的 UUID 產生過程。此外,您還可以透過定義 uniqueIds 方法來指定哪些欄位應該接收 UUID:

php
use Ramsey\Uuid\Uuid;

/**
 * Generate a new UUID for the model.
 */
public function newUniqueId(): string
{
    return (string) Uuid::uuid4();
}

/**
 * Get the columns that should receive a unique identifier.
 *
 * @return array<int, string>
 */
public function uniqueIds(): array
{
    return ['id', 'discount_code'];
}

如果您願意,您可以選擇使用「ULID」而非 UUID。ULID 與 UUID 類似,但長度僅為 26 個字元。與有序 UUID 一樣,ULID 也可以按字典順序排序,以實現高效的資料庫索引。要使用 ULID,您應該在模型上使用 Illuminate\Database\Eloquent\Concerns\HasUlids trait。您還應該確保模型具有 對應的 ULID 主鍵欄位

php
use Illuminate\Database\Eloquent\Concerns\HasUlids;
use Illuminate\Database\Eloquent\Model;

class Article extends Model
{
    use HasUlids;

    // ...
}

$article = Article::create(['title' => 'Traveling to Asia']);

$article->id; // "01gd4d3tgrrfqeda94gdbtdk5c"

時間戳記

預設情況下,Eloquent 預期模型對應的資料表中存在 created_atupdated_at 欄位。當模型被建立或更新時,Eloquent 會自動設定這些欄位的值。如果您不希望這些欄位由 Eloquent 自動管理,您應該在模型上定義一個 $timestamps 屬性並將其值設定為 false

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * Indicates if the model should be timestamped.
     *
     * @var bool
     */
    public $timestamps = false;
}

如果您需要自訂模型時間戳記的格式,請設定模型上的 $dateFormat 屬性。此屬性決定了日期屬性在資料庫中的儲存方式,以及模型被序列化為陣列或 JSON 時的格式:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The storage format of the model's date columns.
     *
     * @var string
     */
    protected $dateFormat = 'U';
}

如果您需要自訂用於儲存時間戳記的欄位名稱,您可以在模型上定義 CREATED_ATUPDATED_AT 常數:

php
<?php

class Flight extends Model
{
    /**
     * The name of the "created at" column.
     *
     * @var string|null
     */
    public const CREATED_AT = 'creation_date';

    /**
     * The name of the "updated at" column.
     *
     * @var string|null
     */
    public const UPDATED_AT = 'updated_date';
}

如果您希望在執行模型操作時不修改模型的 updated_at 時間戳記,您可以在傳遞給 withoutTimestamps 方法的閉包中對模型進行操作:

php
Model::withoutTimestamps(fn () => $post->increment('reads'));

資料庫連線

預設情況下,所有 Eloquent 模型都將使用為您的應用程式配置的預設資料庫連線。如果您想指定在與特定模型互動時應使用的不同連線,您應該在模型上定義 $connection 屬性:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The database connection that should be used by the model.
     *
     * @var string
     */
    protected $connection = 'mysql';
}

預設屬性值

預設情況下,新實例化的模型實體不會包含任何屬性值。如果您想要為模型的部分屬性定義預設值,可以在模型中定義一個 $attributes 屬性。放置在 $attributes 陣列中的屬性值應使用原始的「可儲存」格式,就如同剛從資料庫讀取出來一樣:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The model's default values for attributes.
     *
     * @var array
     */
    protected $attributes = [
        'options' => '[]',
        'delayed' => false,
    ];
}

設定 Eloquent 嚴格模式

Laravel 提供了幾種方法,讓您可以在各種情況下設定 Eloquent 的行為與「嚴格程度」。

首先,preventLazyLoading 方法接受一個可選的布林值引數,用來指示是否應防止延遲載入。例如,您可能希望僅在非正式環境中停用延遲載入,以便在正式環境中,即使程式碼中意外出現了延遲載入的關聯,正式環境仍能繼續正常運作。通常,此方法應在應用程式的 AppServiceProviderboot 方法中調用:

php
use Illuminate\Database\Eloquent\Model;

/**
 * Bootstrap any application services.
 */
public function boot(): void
{
    Model::preventLazyLoading(! $this->app->isProduction());
}

此外,您也可以透過調用 preventSilentlyDiscardingAttributes 方法,指示 Laravel 在嘗試填充不可填充的屬性時拋出異常。這有助於在本地開發過程中,避免在嘗試設定尚未加入模型 fillable 陣列的屬性時,發生出乎意料的錯誤:

php
Model::preventSilentlyDiscardingAttributes(! $this->app->isProduction());

檢索模型

當您建立了模型以及其關聯的資料表之後,就可以開始從資料庫檢索資料了。您可以將每個 Eloquent 模型視為一個強大的查詢建構器,讓您可以流暢地查詢與該模型關聯的資料表。模型的 all 方法會檢索該模型關聯資料表中的所有紀錄:

php
use App\Models\Flight;

foreach (Flight::all() as $flight) {
    echo $flight->name;
}

建立查詢

Eloquent 的 all 方法會回傳模型資料表中的所有結果。然而,由於每個 Eloquent 模型都扮演著查詢建構器的角色,因此您可以為查詢添加額外的限制條件,然後呼叫 get 方法來檢索結果:

php
$flights = Flight::where('active', 1)
    ->orderBy('name')
    ->limit(10)
    ->get();

📌 備註

由於 Eloquent 模型是查詢建構器,您應該複習 Laravel 查詢建構器 提供的所有方法。在撰寫 Eloquent 查詢時,您可以使用其中任何一個方法。

重新整理模型

如果您已經有一個從資料庫檢索出的 Eloquent 模型實例,可以使用 freshrefresh 方法來「重新整理」該模型。fresh 方法會重新從資料庫檢索該模型,現有的模型實例不會受到影響:

php
$flight = Flight::where('number', 'FR 900')->first();

$freshFlight = $flight->fresh();

refresh 方法會使用來自資料庫的新資料來重新填充現有的模型。此外,所有已載入的關聯也會隨之重新整理:

php
$flight = Flight::where('number', 'FR 900')->first();

$flight->number = 'FR 456';

$flight->refresh();

$flight->number; // "FR 900"

集合 (Collections)

正如我們所見,像 allget 這樣的 Eloquent 方法會從資料庫檢索多筆紀錄。然而,這些方法回傳的並非純 PHP 陣列,而是一個 Illuminate\Database\Eloquent\Collection 的實例。

Eloquent 的 Collection 類別繼承了 Laravel 的基礎 Illuminate\Support\Collection 類別,該類別提供了多種實用的方法來與資料集合進行互動。例如,可以使用 reject 方法根據呼叫閉包的結果,將模型從集合中移除:

php
$flights = Flight::where('destination', 'Paris')->get();

$flights = $flights->reject(function (Flight $flight) {
    return $flight->cancelled;
});

除了 Laravel 基礎集合類別提供的方法外,Eloquent 集合類別還提供了一些額外的方法,專門用於與 Eloquent 模型的集合進行互動。

由於 Laravel 的所有集合都實作了 PHP 的可迭代介面,因此您可以像操作陣列一樣對集合進行迴圈:

php
foreach ($flights as $flight) {
    echo $flight->name;
}

分塊結果

如果您嘗試透過 allget 方法載入數萬筆 Eloquent 紀錄,您的應用程式可能會耗盡記憶體。與其使用這些方法,不如使用 chunk 方法來更高效地處理大量模型。

chunk 方法會檢索 Eloquent 模型的子集,並將其傳遞給閉包進行處理。由於一次僅檢索目前的這一塊 (chunk) Eloquent 模型,因此在處理大量模型時,chunk 方法能顯著降低記憶體使用量:

php
use App\Models\Flight;
use Illuminate\Database\Eloquent\Collection;

Flight::chunk(200, function (Collection $flights) {
    foreach ($flights as $flight) {
        // ...
    }
});

傳遞給 chunk 方法的第一個引數是您希望每「塊」接收的紀錄數量。作為第二個引數傳遞的閉包將在從資料庫檢索每一塊結果時被呼叫。系統會執行一次資料庫查詢來檢索傳遞給閉包的每一塊紀錄。

如果您根據某個欄位過濾 chunk 方法的結果,且在迭代結果的同時也會更新該欄位,則應該使用 chunkById 方法。在此類情境中使用 chunk 方法可能會導致非預期且不一致的結果。在內部,chunkById 方法將始終檢索 id 欄位大於前一塊最後一個模型的模型:

php
Flight::where('departed', true)
    ->chunkById(200, function (Collection $flights) {
        $flights->each->update(['departed' => false]);
    }, column: 'id');

由於 chunkByIdlazyById 方法會為執行的查詢添加各自的 "where" 條件,因此您通常應該在閉包中對自己的條件進行邏輯分組

php
Flight::where(function ($query) {
    $query->where('delayed', true)->orWhere('cancelled', true);
})->chunkById(200, function (Collection $flights) {
    $flights->each->update([
        'departed' => false,
        'cancelled' => true
    ]);
}, column: 'id');

使用延遲集合 (Lazy Collections) 分塊

lazy 方法的運作方式與 chunk 方法 類似,在幕後它也是分塊執行查詢。然而,lazy 方法並非直接將每一塊結果傳遞給回呼函式,而是回傳一個扁平化的 Eloquent 模型 LazyCollection,讓您可以將結果視為單一串流進行互動:

php
use App\Models\Flight;

foreach (Flight::lazy() as $flight) {
    // ...
}

如果您根據某個欄位過濾 lazy 方法的結果,且在迭代結果的同時也會更新該欄位,則應該使用 lazyById 方法。在內部,lazyById 方法將始終檢索 id 欄位大於前一塊最後一個模型的模型:

php
Flight::where('departed', true)
    ->lazyById(200, column: 'id')
    ->each->update(['departed' => false]);

您可以使用 lazyByIdDesc 方法根據 id 的降冪順序來過濾結果。

游標 (Cursors)

lazy 方法類似,當你在迭代數以萬計的 Eloquent 模型紀錄時,可以使用 cursor 方法來大幅降低應用程式的記憶體消耗。

cursor 方法只會執行單次資料庫查詢;然而,個別的 Eloquent 模型在實際被迭代之前不會被實例化 (hydrated)。因此,在迭代游標時,任何時間點記憶體中都只會保留一個 Eloquent 模型。

⚠️ 警告

由於 cursor 方法一次只會在記憶體中持有單個 Eloquent 模型,因此它無法預先載入 (eager load) 關聯。如果你需要預先載入關聯,請考慮改用 lazy 方法

在內部,cursor 方法使用 PHP 的 產生器 (generators) 來實現此功能:

php
use App\Models\Flight;

foreach (Flight::where('destination', 'Zurich')->cursor() as $flight) {
    // ...
}

cursor 會回傳一個 Illuminate\Support\LazyCollection 實例。延遲集合 (Lazy collections) 允許你在一次只將單個模型載入記憶體的情況下,使用典型 Laravel 集合中提供的許多集合方法:

php
use App\Models\User;

$users = User::cursor()->filter(function (User $user) {
    return $user->id > 500;
});

foreach ($users as $user) {
    echo $user->id;
}

雖然 cursor 方法比一般查詢使用少得多的記憶體(因為一次只在記憶體中持有單個 Eloquent 模型),但它最終仍可能耗盡記憶體。這是 由於 PHP 的 PDO 驅動程式會在內部緩衝區快取所有原始查詢結果 所致。如果你需要處理極大量的 Eloquent 紀錄,請考慮改用 lazy 方法

進階子查詢

子查詢選取

Eloquent 還提供進階的子查詢支援,讓你能在單次查詢中從關聯表中提取資訊。例如,假設我們有一個航班 destinations(目的地)表和一個前往目的地的 flights(航班)表。flights 表包含一個 arrived_at 欄位,用以表示航班抵達目的地的時間。

利用查詢產生器的 selectaddSelect 方法所提供的子查詢功能,我們可以使用單次查詢選取所有的 destinations 以及最近抵達該目的地的航班名稱:

php
use App\Models\Destination;
use App\Models\Flight;

return Destination::addSelect(['last_flight' => Flight::select('name')
    ->whereColumn('destination_id', 'destinations.id')
    ->orderByDesc('arrived_at')
    ->limit(1)
])->get();

子查詢排序

此外,查詢產生器的 orderBy 函數也支援子查詢。延續航班的範例,我們可以使用此功能根據最後一班航班抵達目的地的時間來對所有目的地進行排序。同樣地,這可以在執行單次資料庫查詢時完成:

php
return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderByDesc('arrived_at')
        ->limit(1)
)->get();

檢索單一模型 / 聚合函數

除了檢索所有符合給定查詢的記錄外,您還可以使用 findfirstfirstWhere 方法來檢索單一記錄。這些方法會回傳單一的模型實例,而不是模型的集合:

php
use App\Models\Flight;

// Retrieve a model by its primary key...
$flight = Flight::find(1);

// Retrieve the first model matching the query constraints...
$flight = Flight::where('active', 1)->first();

// Alternative to retrieving the first model matching the query constraints...
$flight = Flight::firstWhere('active', 1);

有時候,如果找不到結果,您可能希望執行其他操作。findOrfirstOr 方法將會回傳單一的模型實例,或者在找不到結果時執行給定的閉包。閉包回傳的值將被視為該方法的結果:

php
$flight = Flight::findOr(1, function () {
    // ...
});

$flight = Flight::where('legs', '>', 3)->firstOr(function () {
    // ...
});

未找到異常 (Not Found Exceptions)

有時候,如果找不到模型,您可能希望拋出一個異常。這在路由或控制器中特別有用。findOrFailfirstOrFail 方法會檢索查詢的第一個結果;然而,如果找不到任何結果,則會拋出 Illuminate\Database\Eloquent\ModelNotFoundException

php
$flight = Flight::findOrFail(1);

$flight = Flight::where('legs', '>', 3)->firstOrFail();

如果 ModelNotFoundException 沒有被捕捉到,系統會自動將 404 HTTP 回應傳回給客戶端:

php
use App\Models\Flight;

Route::get('/api/flights/{id}', function (string $id) {
    return Flight::findOrFail($id);
});

檢索或建立模型

firstOrCreate 方法會嘗試使用給定的欄位/值配對來定位資料庫記錄。如果在資料庫中找不到該模型,則會插入一筆記錄,其屬性是由第一個陣列引數與可選的第二個陣列引數合併而成的結果。

firstOrNew 方法與 firstOrCreate 類似,會嘗試在資料庫中定位符合給定屬性的記錄。然而,如果找不到模型,則會回傳一個新的模型實例。請注意,firstOrNew 回傳的模型尚未持久化到資料庫中。您需要手動呼叫 save 方法來將其儲存:

php
use App\Models\Flight;

// Retrieve flight by name or create it if it doesn't exist...
$flight = Flight::firstOrCreate([
    'name' => 'London to Paris'
]);

// Retrieve flight by name or create it with the name, delayed, and arrival_time attributes...
$flight = Flight::firstOrCreate(
    ['name' => 'London to Paris'],
    ['delayed' => 1, 'arrival_time' => '11:30']
);

// Retrieve flight by name or instantiate a new Flight instance...
$flight = Flight::firstOrNew([
    'name' => 'London to Paris'
]);

// Retrieve flight by name or instantiate with the name, delayed, and arrival_time attributes...
$flight = Flight::firstOrNew(
    ['name' => 'Tokyo to Sydney'],
    ['delayed' => 1, 'arrival_time' => '11:30']
);

檢索聚合函數

在與 Eloquent 模型互動時,您也可以使用 Laravel 查詢建立器 (query builder) 提供的 countsummax 以及其他 聚合函數 (aggregate methods)。正如您所預期的,這些方法會回傳一個純量值,而不是 Eloquent 模型實例:

php
$count = Flight::where('active', 1)->count();

$max = Flight::where('active', 1)->max('price');

新增與更新模型

新增

當然,在使用 Eloquent 時,我們不只需要從資料庫檢索模型,還需要新增記錄。幸運的是,Eloquent 讓這件事變得非常簡單。要將新記錄插入資料庫,您應該實例化一個新的模型實例並設定模型的屬性,然後在模型實例上呼叫 save 方法:

php
<?php

namespace App\Http\Controllers;

use App\Models\Flight;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;

class FlightController extends Controller
{
    /**
     * Store a new flight in the database.
     */
    public function store(Request $request): RedirectResponse
    {
        // Validate the request...

        $flight = new Flight;

        $flight->name = $request->name;

        $flight->save();

        return redirect('/flights');
    }
}

在這個範例中,我們將來自 HTTP 請求的 name 欄位賦值給 App\Models\Flight 模型實例的 name 屬性。當我們呼叫 save 方法時,一條記錄將被插入到資料庫中。模型 的 created_atupdated_at 時間戳記會在呼叫 save 方法時自動設定,因此不需要手動設定它們。

或者,您可以使用 create 方法透過單一的 PHP 語句來「儲存」一個新模型。create 方法會將插入的模型實例回傳給您:

php
use App\Models\Flight;

$flight = Flight::create([
    'name' => 'London to Paris',
]);

然而,在利用 create 方法之前,您需要在模型類別中指定 fillableguarded 屬性。這些屬性是必要的,因為所有 Eloquent 模型預設都受到保護,以防止大量賦值 (mass assignment) 漏洞。要了解更多關於大量賦值的資訊,請參考 大量賦值文件

更新

save 方法也可以用來更新已存在於資料庫中的模型。要更新模型,您應該先檢索該模型並設定任何您想要更新的屬性,然後呼叫模型的 save 方法。同樣地,updated_at 時間戳記會自動更新,因此不需要手動設定其值:

php
use App\Models\Flight;

$flight = Flight::find(1);

$flight->name = 'Paris to London';

$flight->save();

有時候,您可能需要更新現有模型,或者在沒有匹配模型時建立一個新模型。與 firstOrCreate 方法類似,updateOrCreate 方法會將模型持久化,因此不需要手動呼叫 save 方法。

在下面的範例中,如果存在一個起飛地點 (departure) 為 Oakland 且目的地 (destination) 為 San Diego 的航班,其 pricediscounted 欄位將被更新。如果不存在這樣的航班,則會建立一個新航班,其屬性由第一個引數陣列與第二個引數陣列合併而得:

php
$flight = Flight::updateOrCreate(
    ['departure' => 'Oakland', 'destination' => 'San Diego'],
    ['price' => 99, 'discounted' => 1]
);

當使用 firstOrCreateupdateOrCreate 等方法時,您可能不知道是建立了一個新模型還是更新了現有模型。wasRecentlyCreated 屬性能指示該模型是否在目前的生命週期中被建立:

php
$flight = Flight::updateOrCreate(
    // ...
);

if ($flight->wasRecentlyCreated) {
    // New flight record was inserted...
}

大量更新

更新也可以針對符合給定查詢的模型進行。在這個範例中,所有 active 為 1 且 destinationSan Diego 的航班都將被標記為延遲:

php
Flight::where('active', 1)
    ->where('destination', 'San Diego')
    ->update(['delayed' => 1]);

update 方法預期接收一個包含欄位與值配對的陣列,代表應該被更新的欄位。update 方法會回傳受影響的列數。

⚠️ 警告

當透過 Eloquent 執行大量更新時,更新的模型不會觸發 savingsavedupdatingupdated 模型事件。這是因為在執行大量更新時,模型實際上從未被檢索出來。

檢查屬性變更

Eloquent 提供了 isDirtyisCleanwasChanged 方法來檢查模型的內部狀態,並確定其屬性自模型最初被檢索以來發生了哪些變更。

isDirty 方法用於確定模型的任何屬性自檢索以來是否已被更改。您可以向 isDirty 方法傳遞特定的屬性名稱或屬性陣列,以確定是否有任何屬性是「髒的」(dirty)。isClean 方法則用於確定屬性自檢索以來是否保持不變。此方法同樣接受一個選填的屬性引數:

php
use App\Models\User;

$user = User::create([
    'first_name' => 'Taylor',
    'last_name' => 'Otwell',
    'title' => 'Developer',
]);

$user->title = 'Painter';

$user->isDirty(); // true
$user->isDirty('title'); // true
$user->isDirty('first_name'); // false
$user->isDirty(['first_name', 'title']); // true

$user->isClean(); // false
$user->isClean('title'); // false
$user->isClean('first_name'); // true
$user->isClean(['first_name', 'title']); // false

$user->save();

$user->isDirty(); // false
$user->isClean(); // true

wasChanged 方法用於確定在目前的請求週期中,模型上次儲存時是否有任何屬性被更改。如果需要,您可以傳遞屬性名稱以查看特定屬性是否被更改:

php
$user = User::create([
    'first_name' => 'Taylor',
    'last_name' => 'Otwell',
    'title' => 'Developer',
]);

$user->title = 'Painter';

$user->save();

$user->wasChanged(); // true
$user->wasChanged('title'); // true
$user->wasChanged(['title', 'slug']); // true
$user->wasChanged('first_name'); // false
$user->wasChanged(['first_name', 'title']); // true

getOriginal 方法會回傳一個包含模型原始屬性的陣列,無論模型自檢索以來發生了任何變更。如果需要,您可以傳遞特定的屬性名稱以獲取該屬性的原始值:

php
$user = User::find(1);

$user->name; // John
$user->email; // [email protected]

$user->name = 'Jack';
$user->name; // Jack

$user->getOriginal('name'); // John
$user->getOriginal(); // Array of original attributes...

getChanges 方法回傳一個包含模型上次儲存時變更屬性的陣列,而 getPrevious 方法則回傳一個包含模型上次儲存前原始屬性值的陣列:

php
$user = User::find(1);

$user->name; // John
$user->email; // [email protected]

$user->update([
    'name' => 'Jack',
    'email' => '[email protected]',
]);

$user->getChanges();

/*
    [
        'name' => 'Jack',
        'email' => '[email protected]',
    ]
*/

$user->getPrevious();

/*
    [
        'name' => 'John',
        'email' => '[email protected]',
    ]
*/

大量賦值 (Mass Assignment)

您可以使用 create 方法透過單一 PHP 敘述來「儲存」一個新模型。該方法會將新增的模型實例回傳給您:

php
use App\Models\Flight;

$flight = Flight::create([
    'name' => 'London to Paris',
]);

然而,在使用了 create 方法之前,您需要在模型類別中指定 fillableguarded 屬性。由於所有 Eloquent 模型預設都受到保護以防止大量賦值漏洞 (mass assignment vulnerabilities),因此這些屬性是必要的。

當使用者傳遞了一個非預期的 HTTP 請求欄位,且該欄位更改了資料庫中您未預期的欄位時,就會發生大量賦值漏洞。例如,惡意使用者可能會透過 HTTP 請求發送 is_admin 參數,然後將其傳遞給模型的 create 方法,使該使用者能夠將自己提升為管理員。

因此,在開始之前,您應該定義哪些模型屬性可以被大量賦值。您可以使用模型的 $fillable 屬性來達成此目的。例如,讓我們將 Flight 模型的 name 屬性設定為可大量賦值:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = ['name'];
}

一旦您指定了哪些屬性可以大量賦值,您就可以使用 create 方法在資料庫中新增一筆紀錄。create 方法會回傳新建立的模型實例:

php
$flight = Flight::create(['name' => 'London to Paris']);

如果您已經有一個模型實例,可以使用 fill 方法使用屬性陣列來填充它:

php
$flight->fill(['name' => 'Amsterdam to Frankfurt']);

大量賦值與 JSON 欄位

在賦值 JSON 欄位時,每個欄位的大量賦值金鑰必須指定在模型的 $fillable 陣列中。為了安全性,當使用 guarded 屬性時,Laravel 不支援更新巢狀的 JSON 屬性:

php
/**
 * The attributes that are mass assignable.
 *
 * @var array<int, string>
 */
protected $fillable = [
    'options->enabled',
];

允許大量賦值

如果您希望將所有屬性都設定為可大量賦值,可以將模型的 $guarded 屬性定義為空陣列。如果您選擇取消模型的保護,請務必小心,始終手動建構傳遞給 Eloquent fillcreateupdate 方法的陣列:

php
/**
 * The attributes that aren't mass assignable.
 *
 * @var array<string>
 */
protected $guarded = [];

大量賦值例外

預設情況下,在執行大量賦值操作時,未包含在 $fillable 陣列中的屬性將被靜默捨棄。在正式環境中,這是預期的行為;然而,在本地開發過程中,這可能會導致您對模型更改為何沒有生效感到困惑。

如果您願意,可以透過調用 preventSilentlyDiscardingAttributes 方法來指示 Laravel 在嘗試填充不可填充的屬性時拋出例外。通常,此方法應在應用程式 AppServiceProvider 類別的 boot 方法中調用:

php
use Illuminate\Database\Eloquent\Model;

/**
 * Bootstrap any application services.
 */
public function boot(): void
{
    Model::preventSilentlyDiscardingAttributes($this->app->isLocal());
}

Upserts

Eloquent 的 upsert 方法可用於在單一的原子操作 (atomic operation) 中更新或建立紀錄。該方法的第一個引數包含要新增或更新的值,而第二個引數列出了在關聯資料表中唯一識別紀錄的欄位。第三個也是最後一個引數是一個陣列,包含如果在資料庫中已存在匹配紀錄時應更新的欄位。如果模型啟用了時間戳記,upsert 方法將自動設定 created_atupdated_at 時間戳記:

php
Flight::upsert([
    ['departure' => 'Oakland', 'destination' => 'San Diego', 'price' => 99],
    ['departure' => 'Chicago', 'destination' => 'New York', 'price' => 150]
], uniqueBy: ['departure', 'destination'], update: ['price']);

⚠️ 警告

除了 SQL Server 以外的所有資料庫都要求 upsert 方法的第二個引數中的欄位必須具有「主鍵」或「唯一」索引。此外,MariaDB 和 MySQL 資料庫驅動程式會忽略 upsert 方法的第二個引數,並始終使用資料表的「主鍵」和「唯一」索引來偵測現有紀錄。

刪除模型

若要刪除模型,您可以對模型實例呼叫 delete 方法:

php
use App\Models\Flight;

$flight = Flight::find(1);

$flight->delete();

透過主鍵刪除現有模型

在上述範例中,我們在呼叫 delete 方法之前先從資料庫檢索該模型。然而,如果您知道模型的主鍵,您可以透過呼叫 destroy 方法來刪除模型,而無需明確地先檢索它。除了接受單一主鍵外,destroy 方法還接受多個主鍵、主鍵陣列或主鍵的 集合 (collection)

php
Flight::destroy(1);

Flight::destroy(1, 2, 3);

Flight::destroy([1, 2, 3]);

Flight::destroy(collect([1, 2, 3]));

如果您正在使用 模型軟刪除,您可以透過 forceDestroy 方法永久刪除模型:

php
Flight::forceDestroy(1);

⚠️ 警告

destroy 方法會單獨載入每個模型並呼叫 delete 方法,以便為每個模型正確地發送 deletingdeleted 事件。

使用查詢刪除模型

當然,您可以建立一個 Eloquent 查詢來刪除所有符合查詢條件的模型。在此範例中,我們將刪除所有被標記為不活耀 (inactive) 的航班。與大量更新一樣,大量刪除不會為被刪除的模型發送模型事件:

php
$deleted = Flight::where('active', 0)->delete();

若要刪除資料表中的所有模型,您應該執行一個不包含任何條件的查詢:

php
$deleted = Flight::query()->delete();

⚠️ 警告

透過 Eloquent 執行大量刪除陳述式時,被刪除的模型將不會發送 deletingdeleted 模型事件。這是因為在執行刪除陳述式時,模型實際上從未被檢索。

軟刪除

除了真正從資料庫中移除紀錄外,Eloquent 還可以對模型進行「軟刪除」。當模型被軟刪除時,它們實際上並未從資料庫中移除。相反地,模型上會設定一個 deleted_at 屬性,用以標記模型被「刪除」的日期和時間。若要為模型啟用軟刪除,請將 Illuminate\Database\Eloquent\SoftDeletes trait 新增至模型中:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class Flight extends Model
{
    use SoftDeletes;
}

📌 備註

SoftDeletes trait 會自動將 deleted_at 屬性轉換為 DateTime / Carbon 實例。

您還應該在資料庫資料表中新增 deleted_at 欄位。Laravel 的 結構建立器 (schema builder) 提供了一個輔助方法來建立此欄位:

php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});

Schema::table('flights', function (Blueprint $table) {
    $table->dropSoftDeletes();
});

現在,當您對模型呼叫 delete 方法時,deleted_at 欄位將被設定為目前的日期和時間。然而,該模型的資料庫紀錄仍會保留在資料表中。在查詢使用軟刪除的模型時,被軟刪除的模型將自動從所有查詢結果中排除。

若要判斷給定的模型實例是否已被軟刪除,您可以使用 trashed 方法:

php
if ($flight->trashed()) {
    // ...
}

還原軟刪除模型

有時候您可能希望「取消刪除」一個被軟刪除的模型。若要還原軟刪除模型,您可以對模型實例呼叫 restore 方法。restore 方法會將模型的 deleted_at 欄位設定為 null

php
$flight->restore();

您也可以在查詢中使用 restore 方法來還原多個模型。同樣地,與其他「大量」操作一樣,這不會為還原的模型發送任何模型事件:

php
Flight::withTrashed()
    ->where('airline_id', 1)
    ->restore();

restore 方法也可以在建立 關聯 (relationship) 查詢時使用:

php
$flight->history()->restore();

永久刪除模型

有時候您需要真正地將模型從資料庫中移除。您可以使用 forceDelete 方法將被軟刪除的模型永久從資料庫資料表中移除:

php
$flight->forceDelete();

您也可以在建立 Eloquent 關聯查詢時使用 forceDelete 方法:

php
$flight->history()->forceDelete();

查詢軟刪除模型

包含軟刪除模型

如前所述,軟刪除模型將自動從查詢結果中排除。然而,您可以透過對查詢呼叫 withTrashed 方法,強制將軟刪除模型包含在查詢結果中:

php
use App\Models\Flight;

$flights = Flight::withTrashed()
    ->where('account_id', 1)
    ->get();

在建立 關聯 (relationship) 查詢時,也可以呼叫 withTrashed 方法:

php
$flight->history()->withTrashed()->get();

僅檢索軟刪除模型

onlyTrashed 方法將檢索被軟刪除的模型:

php
$flights = Flight::onlyTrashed()
    ->where('airline_id', 1)
    ->get();

修剪模型

有時候您可能想要定期刪除不再需要的模型。為了實現這一點,您可以將 Illuminate\Database\Eloquent\PrunableIlluminate\Database\Eloquent\MassPrunable trait 新增至您想要定期修剪的模型中。在將其中一個 trait 新增至模型後,請實作一個 prunable 方法,該方法需回傳一個 Eloquent 查詢建構器,用以找出不再需要的模型:

php
<?php

namespace App\Models;

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

class Flight extends Model
{
    use Prunable;

    /**
     * Get the prunable model query.
     */
    public function prunable(): Builder
    {
        return static::where('created_at', '<=', now()->minus(months: 1));
    }
}

在將模型標記為 Prunable 時,您也可以在模型上定義一個 pruning 方法。此方法會在模型被刪除之前被呼叫。這個方法對於在模型從資料庫中被永久移除之前,刪除與該模型相關的其他資源(例如儲存的文件)非常有用:

php
/**
 * Prepare the model for pruning.
 */
protected function pruning(): void
{
    // ...
}

在設定好可修剪的模型後,您應該在應用程式的 routes/console.php 檔案中排程 model:prune Artisan 指令。您可以自由選擇此指令執行的適當時間間隔:

php
use Illuminate\Support\Facades\Schedule;

Schedule::command('model:prune')->daily();

在後台,model:prune 指令會自動偵測應用程式 app/Models 目錄中的 "Prunable" 模型。如果您的模型位於其他位置,可以使用 --model 選項來指定模型類別名稱:

php
Schedule::command('model:prune', [
    '--model' => [Address::class, Flight::class],
])->daily();

如果您希望在修剪所有偵測到的模型時,排除某些特定模型,可以使用 --except 選項:

php
Schedule::command('model:prune', [
    '--except' => [Address::class, Flight::class],
])->daily();

您可以使用 --pretend 選項執行 model:prune 指令,來測試您的 prunable 查詢。在模擬執行 (pretending) 時,model:prune 指令僅會回報如果指令實際執行,將會有多少筆紀錄被修剪:

shell
php artisan model:prune --pretend

⚠️ 警告

如果軟刪除的模型符合修剪查詢,它們將被永久刪除 (forceDelete)。

大量修剪

當模型被標記為 Illuminate\Database\Eloquent\MassPrunable trait 時,模型將使用大量刪除查詢從資料庫中刪除。因此,pruning 方法不會被呼叫,deletingdeleted 模型事件也不會被觸發。這是因為模型在刪除之前從未被實際檢索,因此使得修剪過程更加高效:

php
<?php

namespace App\Models;

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

class Flight extends Model
{
    use MassPrunable;

    /**
     * Get the prunable model query.
     */
    public function prunable(): Builder
    {
        return static::where('created_at', '<=', now()->minus(months: 1));
    }
}

複製模型

您可以使用 replicate 方法來建立一個現有模型實體的未儲存副本。當您有許多共享相同屬性的模型實體時,此方法特別有用:

php
use App\Models\Address;

$shipping = Address::create([
    'type' => 'shipping',
    'line_1' => '123 Example Street',
    'city' => 'Victorville',
    'state' => 'CA',
    'postcode' => '90001',
]);

$billing = $shipping->replicate()->fill([
    'type' => 'billing'
]);

$billing->save();

若要排除一個或多個屬性不被複製到新模型中,您可以將一個陣列傳遞給 replicate 方法:

php
$flight = Flight::create([
    'destination' => 'LAX',
    'origin' => 'LHR',
    'last_flown' => '2020-03-04 11:00:00',
    'last_pilot_id' => 747,
]);

$flight = $flight->replicate([
    'last_flown',
    'last_pilot_id'
]);

查詢範圍 (Query Scopes)

全域範圍 (Global Scopes)

全域範圍允許您為給定模型的所有查詢添加條件。Laravel 自身的 軟刪除 功能就是利用全域範圍來確保僅從資料庫中檢索「未刪除」的模型。撰寫自定義的全域範圍可以提供一種方便且簡單的方式,確保針對給定模型的所有查詢都能套用特定的條件。

產生範圍

要產生新的全域範圍,您可以使用 make:scope Artisan 命令,該命令會將產生的範圍放置在應用程式的 app/Models/Scopes 目錄中:

shell
php artisan make:scope AncientScope

撰寫全域範圍

撰寫全域範圍非常簡單。首先,使用 make:scope 命令產生一個實作 Illuminate\Database\Eloquent\Scope 介面的類別。Scope 介面要求您實作一個方法:applyapply 方法可以根據需要為查詢添加 where 條件或其他類型的子句:

php
<?php

namespace App\Models\Scopes;

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

class AncientScope implements Scope
{
    /**
     * Apply the scope to a given Eloquent query builder.
     */
    public function apply(Builder $builder, Model $model): void
    {
        $builder->where('created_at', '<', now()->minus(years: 2000));
    }
}

📌 備註

如果您的全域範圍在查詢的 select 子句中添加欄位,應使用 addSelect 方法而非 select。這將防止意外替換掉查詢中已有的 select 子句。

套用全域範圍

要將全域範圍分配給模型,您可以直接在模型上放置 ScopedBy 屬性:

php
<?php

namespace App\Models;

use App\Models\Scopes\AncientScope;
use Illuminate\Database\Eloquent\Attributes\ScopedBy;

#[ScopedBy([AncientScope::class])]
class User extends Model
{
    //
}

或者,您也可以透過覆寫模型的 booted 方法並呼叫模型的 addGlobalScope 方法來手動註冊全域範圍。addGlobalScope 方法僅接受一個範圍實例作為其參數:

php
<?php

namespace App\Models;

use App\Models\Scopes\AncientScope;
use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    /**
     * The "booted" method of the model.
     */
    protected static function booted(): void
    {
        static::addGlobalScope(new AncientScope);
    }
}

將上述範例中的範圍添加到 App\Models\User 模型後,呼叫 User::all() 方法將執行以下 SQL 查詢:

sql
select * from `users` where `created_at` < 0021-02-18 00:00:00

匿名全域範圍

Eloquent 還允許您使用閉包來定義全域範圍,這對於不需要獨立類別的簡單範圍特別有用。使用閉包定義全域範圍時,您應在 addGlobalScope 方法的第一個參數中提供您自定義的範圍名稱:

php
<?php

namespace App\Models;

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

class User extends Model
{
    /**
     * The "booted" method of the model.
     */
    protected static function booted(): void
    {
        static::addGlobalScope('ancient', function (Builder $builder) {
            $builder->where('created_at', '<', now()->minus(years: 2000));
        });
    }
}

移除全域範圍

如果您想在特定查詢中移除全域範圍,可以使用 withoutGlobalScope 方法。此方法僅接受全域範圍的類別名稱作為參數:

php
User::withoutGlobalScope(AncientScope::class)->get();

或者,如果您是使用閉包定義全域範圍,則應傳遞您為該範圍指定的字串名稱:

php
User::withoutGlobalScope('ancient')->get();

如果您想移除多個甚至所有查詢的全域範圍,可以使用 withoutGlobalScopeswithoutGlobalScopesExcept 方法:

php
// Remove all of the global scopes...
User::withoutGlobalScopes()->get();

// Remove some of the global scopes...
User::withoutGlobalScopes([
    FirstScope::class, SecondScope::class
])->get();

// Remove all global scopes except the given ones...
User::withoutGlobalScopesExcept([
    SecondScope::class,
])->get();

區域範圍 (Local Scopes)

區域範圍允許您定義一套常用的查詢條件,以便在整個應用程式中輕鬆重複使用。例如,您可能需要頻繁地檢索所有被視為「熱門 (popular)」的使用者。要定義範圍,請在 Eloquent 方法上添加 Scope 屬性。

範圍應始終回傳相同的查詢建構器實例或 void

php
<?php

namespace App\Models;

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

class User extends Model
{
    /**
     * Scope a query to only include popular users.
     */
    #[Scope]
    protected function popular(Builder $query): void
    {
        $query->where('votes', '>', 100);
    }

    /**
     * Scope a query to only include active users.
     */
    #[Scope]
    protected function active(Builder $query): void
    {
        $query->where('active', 1);
    }
}

使用區域範圍

定義好範圍後,您可以在查詢模型時呼叫這些範圍方法。您甚至可以鏈接呼叫多個不同的範圍:

php
use App\Models\User;

$users = User::popular()->active()->orderBy('created_at')->get();

透過 or 查詢運算子結合多個 Eloquent 模型範圍時,可能需要使用閉包來實現正確的 邏輯分組

php
$users = User::popular()->orWhere(function (Builder $query) {
    $query->active();
})->get();

然而,由於這樣做可能較為繁瑣,Laravel 提供了一個「高階」的 orWhere 方法,讓您可以流暢地鏈接範圍而無需使用閉包:

php
$users = User::popular()->orWhere->active()->get();

動態範圍

有時您可能希望定義一個可以接受參數的範圍。首先,只需將額外參數添加到範圍方法的簽名中即可。範圍參數應定義在 $query 參數之後:

php
<?php

namespace App\Models;

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

class User extends Model
{
    /**
     * Scope a query to only include users of a given type.
     */
    #[Scope]
    protected function ofType(Builder $query, string $type): void
    {
        $query->where('type', $type);
    }
}

將預期的引數添加到範圍方法的簽名後,您在呼叫該範圍時即可傳遞這些引數:

php
$users = User::ofType('admin')->get();

待定屬性

如果您想使用範圍來建立具有與限制該範圍相同的屬性的模型,您可以在建構範圍查詢時使用 withAttributes 方法:

php
<?php

namespace App\Models;

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

class Post extends Model
{
    /**
     * Scope the query to only include drafts.
     */
    #[Scope]
    protected function draft(Builder $query): void
    {
        $query->withAttributes([
            'hidden' => true,
        ]);
    }
}

withAttributes 方法會使用給定的屬性將 where 條件添加到查詢中,並且也會將這些給定的屬性添加到透過該範圍建立的任何模型中:

php
$draft = Post::draft()->create(['title' => 'In Progress']);

$draft->hidden; // true

若要指示 withAttributes 方法不要將 where 條件添加到查詢中,您可以將 asConditions 引數設定為 false

php
$query->withAttributes([
    'hidden' => true,
], asConditions: false);

比較模型

有時候您可能需要判斷兩個模型是否為「同一個」。您可以使用 isisNot 方法來快速驗證兩個模型是否具有相同的主鍵、資料表以及資料庫連線:

php
if ($post->is($anotherPost)) {
    // ...
}

if ($post->isNot($anotherPost)) {
    // ...
}

當使用 belongsTohasOnemorphTo 以及 morphOne 關係 時,也可以使用 isisNot 方法。當您想要在不發出查詢來檢索相關模型的情況下進行比較時,這個方法特別有用:

php
if ($post->author()->is($user)) {
    // ...
}

事件

📌 備註

想要將您的 Eloquent 事件直接廣播到您的客戶端應用程式嗎?請參閱 Laravel 的 模型事件廣播

Eloquent 模型會發出數個事件,允許您在模型的生命週期中掛鉤 (hook) 到以下時刻:retrievedcreatingcreatedupdatingupdatedsavingsaveddeletingdeletedtrashedforceDeletingforceDeletedrestoringrestored 以及 replicating

當現有模型從資料庫中被檢索時,會發出 retrieved 事件。當新模型第一次被儲存時,會發出 creatingcreated 事件。當現有模型被修改且調用 save 方法時,會發出 updating / updated 事件。當模型被建立或更新時,無論模型的屬性是否被更改,都會發出 saving / saved 事件。以 -ing 結尾的事件名稱是在模型變更被持久化之前發出的,而以 -ed 結尾的事件則是在變更被持久化之後發出。

要開始監聽模型事件,請在您的 Eloquent 模型中定義一個 $dispatchesEvents 屬性。此屬性將 Eloquent 模型的生命週期各個時間點映射到您自己的 事件類別。每個模型事件類別應該預期透過其建構子接收受影響模型的實例:

php
<?php

namespace App\Models;

use App\Events\UserDeleted;
use App\Events\UserSaved;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable
{
    use Notifiable;

    /**
     * The event map for the model.
     *
     * @var array<string, string>
     */
    protected $dispatchesEvents = [
        'saved' => UserSaved::class,
        'deleted' => UserDeleted::class,
    ];
}

在定義並映射您的 Eloquent 事件後,您可以使用 事件監聽器 來處理這些事件。

⚠️ 警告

當透過 Eloquent 執行大量更新或刪除查詢時,受影響的模型將不會發出 savedupdateddeletingdeleted 模型事件。這是因為在執行大量更新或刪除時,模型實際上從未被檢索。

使用閉包 (Closures)

除了使用自定義的事件類別外,您也可以註冊在各種模型事件發出時執行的閉包。通常,您應該在模型的 booted 方法中註冊這些閉包:

php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    /**
     * The "booted" method of the model.
     */
    protected static function booted(): void
    {
        static::created(function (User $user) {
            // ...
        });
    }
}

如果您需要,可以在註冊模型事件時利用 可排隊的匿名事件監聽器。這將指示 Laravel 使用您應用程式的 佇列 在背景執行模型事件監聽器:

php
use function Illuminate\Events\queueable;

static::created(queueable(function (User $user) {
    // ...
}));

觀察者 (Observers)

定義觀察者

如果您在給定模型上監聽許多事件,可以使用觀察者將所有監聽器分組到單一類別中。觀察者類別的方法名稱反映了您希望監聽的 Eloquent 事件。這些方法中的每一個都接收受影響的模型作為其唯一引數。使用 make:observer Artisan 指令是建立新觀察者類別最簡單的方法:

shell
php artisan make:observer UserObserver --model=User

此指令將把新的觀察者放置在您的 app/Observers 目錄中。如果此目錄不存在,Artisan 會為您建立。您新建立的觀察者如下所示:

php
<?php

namespace App\Observers;

use App\Models\User;

class UserObserver
{
    /**
     * Handle the User "created" event.
     */
    public function created(User $user): void
    {
        // ...
    }

    /**
     * Handle the User "updated" event.
     */
    public function updated(User $user): void
    {
        // ...
    }

    /**
     * Handle the User "deleted" event.
     */
    public function deleted(User $user): void
    {
        // ...
    }

    /**
     * Handle the User "restored" event.
     */
    public function restored(User $user): void
    {
        // ...
    }

    /**
     * Handle the User "forceDeleted" event.
     */
    public function forceDeleted(User $user): void
    {
        // ...
    }
}

要註冊觀察者,您可以將 ObservedBy 屬性放置在對應的模型上:

php
use App\Observers\UserObserver;
use Illuminate\Database\Eloquent\Attributes\ObservedBy;

#[ObservedBy([UserObserver::class])]
class User extends Authenticatable
{
    //
}

或者,您可以透過在您想要觀察的模型上調用 observe 方法來手動註冊觀察者。您可以在應用程式 AppServiceProvider 類別的 boot 方法中註冊觀察者:

php
use App\Models\User;
use App\Observers\UserObserver;

/**
 * Bootstrap any application services.
 */
public function boot(): void
{
    User::observe(UserObserver::class);
}

📌 備註

觀察者還可以監聽其他事件,例如 savingretrieved。這些事件在 事件 文件中有詳細描述。

觀察者與資料庫交易

當模型在資料庫交易 (transaction) 中被建立時,您可能希望指示觀察者僅在資料庫交易提交後才執行其事件處理常式。您可以透過在觀察者上實作 ShouldHandleEventsAfterCommit 介面來達成此目的。如果目前沒有資料庫交易正在進行,事件處理常式將立即執行:

php
<?php

namespace App\Observers;

use App\Models\User;
use Illuminate\Contracts\Events\ShouldHandleEventsAfterCommit;

class UserObserver implements ShouldHandleEventsAfterCommit
{
    /**
     * Handle the User "created" event.
     */
    public function created(User $user): void
    {
        // ...
    }
}

靜音事件

您偶爾可能需要暫時「靜音」模型發出的所有事件。您可以使用 withoutEvents 方法來達成。withoutEvents 方法僅接受一個閉包作為其引數。在該閉包內執行的任何程式碼都將不會發出模型事件,且閉包回傳的任何值都將由 withoutEvents 方法回傳:

php
use App\Models\User;

$user = User::withoutEvents(function () {
    User::findOrFail(1)->delete();

    return User::find(2);
});

在不發出事件的情況下儲存單一模型

有時您可能希望在不發出任何事件的情況下「儲存」給定模型。您可以使用 saveQuietly 方法來達成:

php
$user = User::findOrFail(1);

$user->name = 'Victoria Faith';

$user->saveQuietly();

您也可以在不發出任何事件的情況下「更新」、「刪除」、「軟刪除」、「恢復」和「複製」給定模型:

php
$user->deleteQuietly();
$user->forceDeleteQuietly();
$user->restoreQuietly();