> For the complete documentation index, see [llms.txt](https://tobyisme.gitbook.io/laravel/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tobyisme.gitbook.io/laravel/you-guan-leftjoin-de-yong-fa.md).

# 有關leftjoin的用法

當你leftjoin要下兩個以上的條件的話，可以像以下這樣做

```php
isCarMemberOwnCar::leftJoin('iscarmemberowncarpic', function ($join) {
                             $join->on('iscarmemberowncar.moc_id', '=', 'iscarmemberowncarpic.moc_id')
                                  ->where('iscarmemberowncarpic.isflag',1)
                                  ->where('iscarmemberowncarpic.mocp_picscategory',0);
                           });
```

可以直接包一個function在括號裡，直接加上你要的條件，幾條都可以
